/* =========================================================
   RUDVED DIGITAL — CLEAN FINAL STYLESHEET
   Home + About + Services + Work + Contact + Footer
========================================================= */


/* =========================================================
   RESET + VARIABLES
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --green: #b7ff9d;
  --green-dark: #23833b;
  --green-soft: #efffe9;
  --green-pale: #f7fff4;

  --black: #191b19;
  --white: #ffffff;

  --text: #171917;
  --text-soft: #626b60;

  --border: #dce8d7;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}


/* =========================================================
   COMMON TYPOGRAPHY
========================================================= */

.eyebrow,
.section-eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--green-dark);
}

.section-title {
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -2.8px;
}

.section-title span {
  display: block;
  color: var(--green-dark);
}

.section-description {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-soft);
}


/* =========================================================
   HEADER / NAVBAR
========================================================= */

.header {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;

  position: sticky;
  top: 0;
  z-index: 999;

  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #e7ede4;
  backdrop-filter: blur(14px);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo {
  width: 120px;
  height: auto;
}

.nav-wrapper nav,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-wrapper nav a,
.nav-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: color .2s ease;
}

.nav-wrapper nav a:hover,
.nav-menu a:hover {
  color: var(--green-dark);
}

.nav-btn {
  padding: 14px 22px;
  flex-shrink: 0;

  border-radius: 10px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  color: #ffffff;
  background: var(--black);

  transition: transform .2s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.mobile-menu,
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  padding: 9px;

  display: none;

  border: 1px solid var(--border);
  border-radius: 10px;

  background: #ffffff;
  cursor: pointer;
}

.mobile-menu span,
.mobile-menu-btn span {
  width: 100%;
  height: 2px;

  display: block;
  margin: 5px 0;

  background: #111;
}


/* =========================================================
   COMMON BUTTONS
========================================================= */

.primary-btn,
.secondary-btn {
  padding: 16px 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.primary-btn {
  color: #fff;
  background: var(--black);
}

.secondary-btn {
  border: 1px solid var(--black);
  background: rgba(255,255,255,.85);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}


/* =========================================================
   HOME — HERO
========================================================= */

.hero {
  min-height: calc(100vh - 90px);
  padding: 80px 0 90px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 50%,
      rgba(183,255,157,.55),
      transparent 32%
    ),
    var(--green-pale);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 75px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  margin-bottom: 27px;

  font-size: clamp(56px, 6vw, 80px);
  line-height: .98;
  letter-spacing: -4px;
}

.hero h1 span {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
}

.hero-text {
  max-width: 620px;
  margin-bottom: 31px;

  font-size: 18px;
  line-height: 1.72;

  color: #5b6459;
}

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

.hero-media {
  min-height: 570px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-shell {
  width: 100%;
  max-width: 535px;
  height: 540px;

  position: relative;
  z-index: 3;

  overflow: hidden;

  border-radius: 30px;

  background: #fff;

  box-shadow:
    0 35px 85px rgba(35,75,45,.16);
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0,0,0,.50)
    );
}

.hero-image-caption {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 4;

  color: #fff;
}

.hero-image-caption small {
  display: block;
  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;

  color: var(--green);
}

.hero-image-caption strong {
  max-width: 360px;
  display: block;

  font-size: 26px;
  line-height: 1.16;
}

.floating-card {
  position: absolute;
  z-index: 8;

  padding: 15px 17px;

  border-radius: 15px;

  background: #fff;

  box-shadow:
    0 20px 50px rgba(30,70,40,.14);
}

.floating-card small {
  display: block;
  margin-bottom: 5px;

  font-size: 8px;
  letter-spacing: 1px;

  color: #788076;
}

.floating-card strong {
  font-size: 13px;
}

.float-one {
  left: -35px;
  top: 95px;
}

.float-two {
  right: -28px;
  top: 190px;
}

.float-three {
  right: 25px;
  bottom: 45px;
}

.float-one strong,
.float-two strong {
  color: var(--green-dark);
}


/* =========================================================
   HOME — SERVICES
========================================================= */

.services {
  padding: 120px 0;
  background: #fff;
}

.services-heading {
  max-width: 850px;
  margin-bottom: 55px;
}

.services-heading .section-description {
  max-width: 720px;
  margin-top: 24px;
}

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

.service-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 23px;

  background: #fff;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 60px rgba(30,70,40,.10);
}

.service-image {
  height: 215px;

  position: relative;
  overflow: hidden;

  background: #eaf8e5;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.04);
}

.service-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,.20)
    );
}

.service-card .service-icon {
  width: 46px;
  height: 46px;

  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 13px;

  font-size: 19px;

  color: #111;
  background: var(--green);
}

.service-body {
  min-height: 280px;
  padding: 28px;

  display: flex;
  flex-direction: column;
}

.service-number {
  margin-bottom: 28px;

  font-size: 9px;
  font-weight: 800;

  color: var(--green-dark);
}

.service-card h3 {
  margin-bottom: 12px;

  font-size: 21px;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 23px;

  font-size: 14px;
  line-height: 1.65;

  color: var(--text-soft);
}

.service-card a {
  margin-top: auto;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  color: var(--green-dark);
}


/* =========================================================
   HOME — WHY
========================================================= */

.why {
  padding: 120px 0;

  color: #fff;
  background: var(--black);
}

.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 85px;
  align-items: center;
}

.why .eyebrow {
  color: var(--green);
}

.why .section-title {
  color: #fff;
}

.why .section-title span {
  color: var(--green);
}

.why-description {
  max-width: 560px;
  margin-top: 25px;

  font-size: 16px;
  line-height: 1.75;

  color: #aab2a8;
}

.why-list {
  margin-top: 42px;

  border-top: 1px solid rgba(255,255,255,.1);
}

.why-item {
  padding: 21px 0;

  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;

  border-bottom: 1px solid rgba(255,255,255,.1);
}

.why-item > span {
  font-size: 10px;
  font-weight: 800;

  color: var(--green);
}

.why-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.why-item p {
  max-width: 460px;

  font-size: 13px;
  line-height: 1.65;

  color: #9ca59a;
}

.why-photo {
  min-height: 575px;

  position: relative;

  overflow: hidden;

  border-radius: 30px;
}

.why-photo img {
  width: 100%;
  height: 575px;

  object-fit: cover;
}

.why-photo::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(0,0,0,.70)
    );
}

.why-photo-copy {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
}

.why-photo-copy small {
  display: block;
  margin-bottom: 8px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;

  color: var(--green);
}

.why-photo-copy strong {
  max-width: 420px;
  display: block;

  font-size: 28px;
  line-height: 1.18;
}


/* =========================================================
   HOME — HYDERABAD
========================================================= */

.local {
  padding: 120px 0;
  background: var(--green-soft);
}

.local-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 75px;
  align-items: center;
}

.local-copy .section-description {
  margin-top: 24px;
}

.local-extra {
  margin-top: 18px !important;
}

.local-visual {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 30px 65px rgba(30,70,40,.10);
}

.local-city-top {
  padding: 27px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.local-city-top strong {
  font-size: 22px;
}

.local-city-top span {
  padding: 7px 10px;

  border-radius: 30px;

  font-size: 8px;
  font-weight: 800;

  background: var(--green);
}

.city-illustration {
  height: 300px;

  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #f5fff1,
      #dfffd5
    );
}

.city-building {
  position: absolute;
  bottom: 0;

  border: 2px solid #1b1b1b;
  border-bottom: none;

  background: rgba(255,255,255,.75);
}

.building-a {
  width: 82px;
  height: 150px;
  left: 8%;
}

.building-b {
  width: 110px;
  height: 210px;
  left: 27%;
}

.building-c {
  width: 75px;
  height: 125px;
  left: 52%;
  background: var(--green);
}

.building-d {
  width: 125px;
  height: 235px;
  right: 7%;
}

.city-building::before {
  content: "";

  position: absolute;
  left: 15px;
  right: 15px;
  top: 25px;

  height: 2px;

  background: #1b1b1b;

  box-shadow:
    0 28px #1b1b1b,
    0 56px #1b1b1b,
    0 84px #1b1b1b,
    0 112px #1b1b1b;
}

.local-stats {
  padding: 18px 22px 22px;

  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.local-stat {
  padding: 14px;

  border-radius: 12px;

  background: var(--green-pale);
}

.local-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.local-stat span {
  font-size: 8px;
  color: var(--text-soft);
}


/* =========================================================
   HOME — WORK
========================================================= */

.work {
  padding: 120px 0;
  background: #fff;
}

.work-heading {
  margin-bottom: 55px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.work-heading .section-description {
  max-width: 450px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.work-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: #fff;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.work-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 60px rgba(30,70,40,.10);
}

.work-image {
  height: 260px;

  position: relative;
  overflow: hidden;
}

.work-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.05);
}

.work-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.02),
      rgba(0,0,0,.20)
    );
}

.work-image-tag {
  position: absolute;
  left: 18px;
  bottom: 17px;
  z-index: 4;

  padding: 7px 10px;

  border-radius: 7px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: .8px;

  color: #111;
  background: var(--green);
}

.work-body {
  padding: 25px;
}

.work-body small {
  display: block;
  margin-bottom: 10px;

  font-size: 8px;
  font-weight: 800;

  color: var(--green-dark);
}

.work-body h3 {
  margin-bottom: 11px;

  font-size: 21px;
  line-height: 1.25;
}

.work-body p {
  font-size: 13px;
  line-height: 1.65;

  color: var(--text-soft);
}


/* =========================================================
   HOME — WHY CHOOSE
========================================================= */

.choose {
  padding: 120px 0;
  background: var(--green-soft);
}

.choose-heading {
  max-width: 900px;
  margin-bottom: 55px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.choose-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: #fff;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.choose-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 25px 60px rgba(30,70,40,.10);
}

.choose-image {
  height: 210px;

  position: relative;
  overflow: hidden;
}

.choose-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;
}

.choose-card:hover .choose-image img {
  transform: scale(1.04);
}

.choose-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.02) 35%,
      rgba(0,0,0,.56)
    );
}

.choose-image-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 4;

  padding: 8px 11px;

  border-radius: 8px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;

  color: #111;
  background: var(--green);
}

.choose-body {
  min-height: 245px;
  padding: 28px;
}

.choose-body small {
  display: block;
  margin-bottom: 28px;

  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.choose-body h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.choose-body p {
  font-size: 14px;
  line-height: 1.68;

  color: var(--text-soft);
}


/* =========================================================
   HOME — FAQ
========================================================= */

.faq {
  padding: 120px 0;
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 85px;
}

.faq-heading h2 {
  font-size: clamp(42px,4.5vw,60px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.faq-heading h2 span {
  display: block;
  margin-top: 7px;

  color: var(--green-dark);
}

.faq-heading p:last-child {
  margin-top: 22px;

  line-height: 1.7;

  color: var(--text-soft);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  min-height: 88px;
  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  font-size: 17px;
  font-weight: 700;
}

.faq-item summary strong {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--green);

  transition: transform .2s ease;
}

.faq-item[open] summary strong {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 60px 25px 0;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.75;

  color: var(--text-soft);
}


/* =========================================================
   HOME — CTA
========================================================= */

.cta {
  padding: 95px 0;
  background: var(--green);
}

.cta .eyebrow {
  color: #1b1b1b;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta h2 {
  max-width: 760px;

  font-size: clamp(42px,5vw,64px);
  line-height: 1.02;
  letter-spacing: -2.8px;
}


/* =========================================================
   ABOUT PAGE
========================================================= */

.about2-hero {
  min-height: calc(100vh - 90px);
  padding: 100px 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 88% 40%,
      rgba(183,255,157,.46),
      transparent 32%
    ),
    var(--green-pale);
}

.about2-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 80px;
  align-items: center;
}

.about2-content {
  max-width: 690px;
}

.about2-eyebrow {
  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  color: var(--green-dark);
}

.about2-content h1 {
  margin-bottom: 27px;

  font-size: clamp(52px,5.7vw,78px);
  line-height: .98;
  letter-spacing: -3.5px;
}

.about2-content h1 span {
  display: block;
  color: var(--green-dark);
}

.about2-description {
  max-width: 640px;
  margin-bottom: 36px;

  font-size: 18px;
  line-height: 1.75;

  color: #59635a;
}

.about2-proof {
  display: grid;
  grid-template-columns: repeat(3,1fr);

  margin-bottom: 35px;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about2-proof div {
  padding: 20px 18px;
  border-right: 1px solid var(--border);
}

.about2-proof div:first-child {
  padding-left: 0;
}

.about2-proof div:last-child {
  border-right: 0;
}

.about2-proof strong {
  display: block;
  margin-bottom: 5px;

  font-size: 14px;
}

.about2-proof span {
  font-size: 11px;
  line-height: 1.4;

  color: #79837f;
}

.about2-button {
  width: fit-content;

  padding: 15px 20px 15px 22px;

  display: inline-flex;
  align-items: center;
  gap: 28px;

  border-radius: 11px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 700;

  color: #fff;
  background: var(--black);

  transition: transform .2s ease;
}

.about2-button:hover {
  transform: translateY(-2px);
}

.about2-visual {
  min-height: 590px;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.about2-dashboard {
  width: 100%;
  max-width: 535px;

  position: relative;
  z-index: 3;

  padding: 30px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: rgba(255,255,255,.94);

  box-shadow:
    0 35px 90px rgba(20,50,44,.12);
}

.about2-dashboard-top {
  margin-bottom: 25px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.about2-dashboard-top small {
  display: block;
  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;

  color: var(--green-dark);
}

.about2-dashboard-top h3 {
  font-size: 22px;
}

.about2-status {
  padding: 7px 9px;

  border-radius: 99px;

  font-size: 8px;
  font-weight: 800;

  color: var(--green-dark);
  background: var(--green-soft);
}

.about2-growth-box {
  min-height: 185px;
  padding: 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: end;

  border-radius: 18px;

  background: var(--black);
}

.about2-growth-copy small {
  display: block;
  margin-bottom: 8px;

  font-size: 9px;
  letter-spacing: 1.2px;

  color: var(--green);
}

.about2-growth-copy strong {
  max-width: 170px;
  display: block;

  font-size: 22px;
  line-height: 1.1;

  color: #fff;
}

.about2-chart {
  height: 110px;

  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.about2-chart .chart-bar {
  flex: 1;
  min-width: 18px;

  border-radius: 6px 6px 2px 2px;

  background:
    linear-gradient(
      180deg,
      var(--green),
      var(--green-dark)
    );
}

.about2-chart .bar-a { height: 27%; }
.about2-chart .bar-b { height: 40%; }
.about2-chart .bar-c { height: 54%; }
.about2-chart .bar-d { height: 72%; }
.about2-chart .bar-e { height: 94%; }

.about2-services {
  margin-top: 12px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about2-service {
  min-height: 74px;
  padding: 13px;

  display: grid;
  grid-template-columns: 36px 1fr 20px;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--border);
  border-radius: 13px;

  background: #fbfdf9;
}

.about2-service .service-icon {
  width: 34px;
  height: 34px;

  position: static;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 9px;

  color: var(--green-dark);
  background: var(--green-soft);

  font-size: 15px;
}

.about2-service strong {
  display: block;
  margin-bottom: 3px;

  font-size: 12px;
}

.about2-service small {
  display: block;

  font-size: 9px;

  color: #84908c;
}

.service-state {
  color: var(--green-dark);
  font-weight: 700;
}

.about2-dashboard-footer {
  margin-top: 20px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;

  color: #75817d;
}

.about2-dashboard-footer i {
  width: 28px;
  height: 1px;

  background: #cad5d1;
}

.about2-floating-card {
  min-width: 180px;
  padding: 16px 18px;

  position: absolute;
  right: -25px;
  top: 105px;
  z-index: 4;

  border-radius: 14px;

  background: #fff;

  box-shadow:
    0 18px 45px rgba(14,40,34,.12);
}

.about2-floating-card small {
  display: block;
  margin-bottom: 5px;

  font-size: 8px;
  letter-spacing: 1.2px;

  color: #86918e;
}

.about2-floating-card strong {
  font-size: 12px;
}

.about2-glow {
  width: 410px;
  height: 410px;

  position: absolute;

  border-radius: 50%;

  background: rgba(183,255,157,.32);

  filter: blur(20px);
}


/* ABOUT PRINCIPLES */

.about-principles {
  padding: 120px 0;
  background: #fff;
}

.about-principles-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.about-principles-heading h2 {
  font-size: clamp(42px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -2.6px;
}

.about-principles-heading h2 span {
  display: block;
  color: var(--green-dark);
}

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

.principle-card {
  min-height: 260px;
  padding: 32px;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--green-pale);
}

.principle-card > span {
  display: block;
  margin-bottom: 45px;

  font-size: 11px;
  font-weight: 800;

  color: var(--green-dark);
}

.principle-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.principle-card p {
  font-size: 15px;
  line-height: 1.7;

  color: var(--text-soft);
}

.about-cta {
  padding: 100px 0;

  color: #fff;
  background: var(--black);
}

.about-cta .section-eyebrow {
  color: var(--green);
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-cta h2 {
  font-size: clamp(40px,5vw,60px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.about-cta h2 span {
  display: block;
  color: var(--green);
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services2-hero {
  min-height: calc(100vh - 90px);
  padding: 100px 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 70%,
      rgba(183,255,157,.48),
      transparent 32%
    ),
    var(--green-pale);
}

.services2-hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 80px;
  align-items: center;
}

.services2-hero-content {
  max-width: 690px;
}

.services2-eyebrow {
  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  color: var(--green-dark);
}

.services2-hero h1 {
  margin-bottom: 27px;

  font-size: clamp(52px,5.7vw,78px);
  line-height: .98;
  letter-spacing: -3.5px;
}

.services2-hero h1 span {
  display: block;
  color: var(--green-dark);
}

.services2-description {
  max-width: 630px;
  margin-bottom: 32px;

  font-size: 18px;
  line-height: 1.72;

  color: var(--text-soft);
}

.services2-benefits {
  margin-bottom: 32px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;

  font-size: 11px;
  font-weight: 700;
}

.services2-benefits i {
  font-style: normal;
  color: var(--green-dark);
}

.services2-primary {
  padding: 15px 21px;

  display: inline-flex;
  align-items: center;
  gap: 24px;

  border-radius: 11px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  color: #fff;
  background: var(--black);
}

.services2-visual {
  min-height: 570px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.services2-system {
  width: 100%;
  max-width: 530px;
  padding: 30px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 35px 80px rgba(30,70,40,.12);
}

.services2-system-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  margin-bottom: 22px;
}

.services2-system-top small {
  display: block;
  margin-bottom: 6px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;

  color: var(--green-dark);
}

.services2-system-top h3 {
  font-size: 22px;
}

.services2-system-top > span {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-size: 13px;
  font-weight: 800;

  background: var(--green);
}

.services2-core {
  height: 360px;

  position: relative;

  border-radius: 22px;

  background: var(--black);
}

.services2-core-center {
  width: 130px;
  height: 130px;

  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;

  transform: translate(-50%,-50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--green);
}

.services2-core-center small {
  font-size: 9px;
}

.services2-core-center strong {
  font-size: 17px;
}

.services2-core-item {
  width: 125px;
  padding: 13px;

  position: absolute;

  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;

  color: #fff;
  background: #232623;
}

.services2-core-item span {
  display: block;
  margin-bottom: 5px;

  font-size: 8px;

  color: var(--green);
}

.services2-core-item strong {
  display: block;
  margin-bottom: 4px;

  font-size: 11px;
}

.services2-core-item small {
  font-size: 8px;
  color: #aeb5ad;
}

.service-search {
  top: 35px;
  left: 30px;
}

.service-paid {
  top: 35px;
  right: 30px;
}

.service-web {
  bottom: 35px;
  left: 30px;
}

.service-ai {
  right: 30px;
  bottom: 35px;
}

.services2-system-bottom {
  padding-top: 20px;

  display: flex;
  justify-content: space-between;
  gap: 15px;

  font-size: 9px;
  font-weight: 700;

  color: #7d887b;
}


/* SERVICES LIST */

.services2-list {
  padding: 120px 0;
  background: #fff;
}

.services2-heading {
  max-width: 820px;
  margin-bottom: 55px;
}

.services2-heading h2 {
  margin-bottom: 20px;

  font-size: clamp(42px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.services2-heading h2 span {
  display: block;
  color: var(--green-dark);
}

.services2-heading > p:last-child {
  max-width: 650px;

  font-size: 16px;
  line-height: 1.7;

  color: var(--text-soft);
}

.services2-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 22px;
}

.services2-card {
  min-height: 420px;
  padding: 32px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--border);
  border-radius: 22px;

  background: var(--green-pale);
}

.services2-featured {
  color: #fff;
  background: var(--black);
}

.services2-card-top {
  margin-bottom: 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.services2-card-top span {
  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.services2-featured .services2-card-top span {
  color: var(--green);
}

.services2-card-top strong {
  font-size: 9px;
  letter-spacing: 1.2px;

  color: #7c867a;
}

.services2-featured .services2-card-top strong {
  color: #aab2a8;
}

.services2-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
}

.services2-card p {
  margin-bottom: 23px;

  font-size: 14px;
  line-height: 1.7;

  color: var(--text-soft);
}

.services2-featured p {
  color: #aab2a8;
}

.services2-card ul {
  margin: 0 0 28px 18px;
}

.services2-card li {
  margin-bottom: 8px;

  font-size: 13px;

  color: #596358;
}

.services2-featured li {
  color: #c3cbc1;
}

.services2-card > a {
  margin-top: auto;

  text-decoration: none;

  font-size: 13px;
  font-weight: 800;

  color: var(--green-dark);
}

.services2-featured > a {
  color: var(--green);
}

.services2-wide {
  grid-column: span 2;
  min-height: auto;
}

.services2-wide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.services2-wide-content ul {
  margin-top: 0;
}


/* SERVICES PROCESS */

.services2-process {
  padding: 110px 0;
  background: var(--green-soft);
}

.services2-process-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.services2-process-heading h2 {
  font-size: clamp(42px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.services2-process-heading h2 span {
  display: block;
  color: var(--green-dark);
}

.services2-process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top: 1px solid #cdddc8;
}

.services2-process-grid > div {
  padding: 30px 24px;

  border-right: 1px solid #cdddc8;
}

.services2-process-grid > div:last-child {
  border-right: none;
}

.services2-process-grid span {
  display: block;
  margin-bottom: 35px;

  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.services2-process-grid strong {
  display: block;
  margin-bottom: 10px;

  font-size: 18px;
}

.services2-process-grid p {
  font-size: 13px;
  line-height: 1.6;

  color: var(--text-soft);
}

.services2-cta {
  padding: 95px 0;
  background: var(--green);
}

.services2-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.services2-cta h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.services2-cta h2 span {
  display: block;
}


/* =========================================================
   WORK / CASE STUDIES PAGE
========================================================= */

.work2-hero {
  min-height: calc(100vh - 90px);
  padding: 100px 0;

  display: flex;
  align-items: center;

  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(183,255,157,.45),
      transparent 32%
    ),
    var(--green-pale);
}

.work2-hero-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 80px;
  align-items: center;
}

.work2-eyebrow {
  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  color: var(--green-dark);
}

.work2-hero h1 {
  margin-bottom: 27px;

  font-size: clamp(52px,5.7vw,78px);
  line-height: .98;
  letter-spacing: -3.5px;
}

.work2-hero h1 span {
  display: block;
  color: var(--green-dark);
}

.work2-description {
  max-width: 630px;
  margin-bottom: 32px;

  font-size: 18px;
  line-height: 1.72;

  color: var(--text-soft);
}

.work2-button {
  padding: 15px 21px;

  display: inline-flex;
  align-items: center;
  gap: 25px;

  border-radius: 11px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  color: #fff;
  background: var(--black);
}

.work2-visual {
  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.work2-dashboard {
  width: 100%;
  max-width: 530px;
  padding: 30px;

  border-radius: 28px;

  color: #fff;
  background: var(--black);

  box-shadow:
    0 35px 80px rgba(0,0,0,.18);
}

.work2-dashboard-top {
  margin-bottom: 25px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.work2-dashboard-top small {
  display: block;
  margin-bottom: 6px;

  font-size: 9px;
  letter-spacing: 1.2px;

  color: var(--green);
}

.work2-dashboard-top h3 {
  font-size: 22px;
}

.work2-dashboard-top > span {
  padding: 7px 9px;

  border-radius: 99px;

  font-size: 8px;
  font-weight: 800;

  color: var(--black);
  background: var(--green);
}

.work2-performance {
  min-height: 210px;
  padding: 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: end;

  border-radius: 18px;

  background: #282b28;
}

.work2-performance-copy small {
  display: block;
  margin-bottom: 8px;

  font-size: 9px;
  color: var(--green);
}

.work2-performance-copy strong {
  display: block;

  font-size: 26px;
  line-height: 1.12;
}

.work2-performance-copy strong span {
  display: block;
  color: #bfc6bd;
}

.work2-chart {
  height: 130px;

  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.work2-bar {
  flex: 1;

  border-radius: 6px 6px 2px 2px;

  background:
    linear-gradient(
      180deg,
      var(--green),
      var(--green-dark)
    );
}

.bar-one { height: 30%; }
.bar-two { height: 45%; }
.bar-three { height: 58%; }
.bar-four { height: 75%; }
.bar-five { height: 95%; }

.work2-metrics {
  margin-top: 12px;

  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.work2-metrics > div {
  padding: 14px;

  border-radius: 12px;

  background: #252825;
}

.work2-metrics small {
  display: block;
  margin-bottom: 6px;

  font-size: 8px;

  color: #939b91;
}

.work2-metrics strong {
  display: block;

  font-size: 12px;
}

.work2-metrics span {
  color: var(--green);
}


/* WORK PROJECTS */

.work2-projects {
  padding: 120px 0;
  background: #fff;
}

.work2-heading {
  max-width: 850px;
  margin-bottom: 65px;
}

.work2-heading h2 {
  margin-bottom: 20px;

  font-size: clamp(42px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.work2-heading h2 span {
  display: block;
  color: var(--green-dark);
}

.work2-heading > p:last-child {
  max-width: 680px;

  font-size: 16px;
  line-height: 1.7;

  color: var(--text-soft);
}

.work2-project {
  margin-bottom: 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: #fff;
}

.work2-reverse .work2-project-visual {
  order: 2;
}

.work2-reverse .work2-project-content {
  order: 1;
}

.work2-project-visual {
  min-height: 470px;
  padding: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--green-soft);
}

.work2-project-content {
  padding: 55px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work2-project-number {
  display: block;
  margin-bottom: 30px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;

  color: var(--green-dark);
}

.work2-project-content h3 {
  margin-bottom: 18px;

  font-size: clamp(27px,3vw,38px);
  line-height: 1.12;
  letter-spacing: -1px;
}

.work2-project-content p {
  margin-bottom: 25px;

  font-size: 15px;
  line-height: 1.7;

  color: var(--text-soft);
}

.work2-project-content > a {
  margin-top: 25px;

  text-decoration: none;
  font-size: 13px;
  font-weight: 800;

  color: var(--green-dark);
}

.work2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work2-tags span {
  padding: 7px 9px;

  border-radius: 7px;

  font-size: 8px;
  font-weight: 800;

  background: var(--green-soft);
}


/* SEO VISUAL */

.work2-seo {
  background: var(--black);
}

.work2-seo-dashboard {
  width: 100%;
  max-width: 400px;
  padding: 30px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;

  color: #fff;
  background: #252825;
}

.work2-seo-dashboard > small {
  font-size: 9px;
  color: var(--green);
}

.work2-seo-dashboard h3 {
  margin: 8px 0 30px;
  font-size: 26px;
}

.work2-seo-chart {
  height: 110px;

  position: relative;

  border-bottom: 1px solid rgba(255,255,255,.12);
}

.work2-seo-chart span {
  width: 100%;
  height: 4px;

  position: absolute;
  left: 0;
  bottom: 30px;

  transform: rotate(-7deg);

  border-radius: 99px;

  background:
    linear-gradient(
      90deg,
      var(--green-dark),
      var(--green)
    );
}

.work2-seo-stats {
  margin-top: 25px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work2-seo-stats small {
  display: block;
  margin-bottom: 5px;

  font-size: 8px;

  color: #91998f;
}

.work2-seo-stats strong {
  font-size: 14px;
  color: var(--green);
}


/* WEB VISUAL */

.work2-web {
  background: #e9ffe2;
}

.work2-browser {
  width: 85%;
  max-width: 420px;

  overflow: hidden;

  border-radius: 16px;

  background: #fff;

  box-shadow:
    0 25px 55px rgba(0,0,0,.12);
}

.work2-browser-top {
  height: 38px;
  padding: 0 15px;

  display: flex;
  align-items: center;
  gap: 6px;

  border-bottom: 1px solid #eee;
}

.work2-browser-top span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #c9cec7;
}

.work2-browser-body {
  padding: 35px;
}

.work2-browser-body small {
  display: block;
  margin-bottom: 20px;

  font-size: 8px;

  color: var(--green-dark);
}

.work2-browser-title {
  width: 70%;
  height: 45px;
  margin-bottom: 20px;

  border-radius: 7px;

  background: var(--black);
}

.work2-browser-text {
  width: 90%;
  height: 9px;
  margin: 9px 0;

  border-radius: 99px;

  background: #dfe5dc;
}

.work2-browser-text.short {
  width: 62%;
}

.work2-browser-body button {
  margin-top: 22px;
  padding: 11px 15px;

  border: 0;
  border-radius: 8px;

  font-size: 9px;
  font-weight: 800;

  background: var(--green);
}


/* ADS VISUAL */

.work2-ads {
  background: var(--black);
}

.work2-ads-panel {
  width: 100%;
  max-width: 420px;
  padding: 28px;

  border-radius: 20px;

  background: #252825;
  color: #fff;
}

.work2-ads-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.work2-ads-top small {
  font-size: 8px;
  color: var(--green);
}

.work2-ads-top span {
  font-size: 8px;
  color: var(--green);
}

.work2-ads-main {
  padding: 40px 0 30px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items: end;
}

.work2-ads-main small {
  display: block;
  margin-bottom: 8px;

  font-size: 8px;
  color: #92998f;
}

.work2-ads-main strong {
  font-size: 25px;
}

.work2-mini-chart {
  height: 100px;

  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.work2-mini-chart span {
  flex: 1;

  border-radius: 5px 5px 2px 2px;

  background: var(--green);
}

.work2-mini-chart span:nth-child(1) { height: 35%; }
.work2-mini-chart span:nth-child(2) { height: 55%; }
.work2-mini-chart span:nth-child(3) { height: 75%; }
.work2-mini-chart span:nth-child(4) { height: 100%; }

.work2-ads-bottom {
  padding-top: 20px;

  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  border-top: 1px solid rgba(255,255,255,.1);
}

.work2-ads-bottom span {
  padding: 6px 8px;

  border-radius: 7px;

  font-size: 8px;

  background: #303430;
}


/* AUTOMATION VISUAL */

.work2-automation {
  background: var(--green-soft);
}

.automation-flow {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.automation-flow > div {
  min-width: 85px;
  padding: 18px 12px;

  text-align: center;

  border: 1px solid var(--border);
  border-radius: 12px;

  background: #fff;
}

.automation-flow small {
  display: block;
  margin-bottom: 6px;

  font-size: 8px;

  color: var(--green-dark);
}

.automation-flow strong {
  font-size: 12px;
}


/* WORK APPROACH */

.work2-approach {
  padding: 110px 0;
  background: var(--green-soft);
}

.work2-approach-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.work2-approach-heading h2 {
  font-size: clamp(42px,5vw,64px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.work2-approach-heading h2 span {
  display: block;
  color: var(--green-dark);
}

.work2-approach-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top: 1px solid #cdddc8;
}

.work2-approach-grid > div {
  padding: 30px 23px;

  border-right: 1px solid #cdddc8;
}

.work2-approach-grid > div:last-child {
  border-right: none;
}

.work2-approach-grid span {
  display: block;
  margin-bottom: 30px;

  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.work2-approach-grid strong {
  display: block;
  margin-bottom: 12px;

  font-size: 17px;
  line-height: 1.4;
}

.work2-approach-grid p {
  font-size: 13px;
  line-height: 1.6;

  color: var(--text-soft);
}

.work2-cta {
  padding: 95px 0;
  background: var(--green);
}

.work2-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.work2-cta h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.work2-cta h2 span {
  display: block;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact2-hero {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 88% 30%,
      rgba(183,255,157,.44),
      transparent 30%
    ),
    var(--green-pale);
}

.contact2-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact2-content {
  padding-top: 30px;
}

.contact2-eyebrow {
  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;

  color: var(--green-dark);
}

.contact2-content h1 {
  margin-bottom: 25px;

  font-size: clamp(50px,5.4vw,74px);
  line-height: .99;
  letter-spacing: -3.2px;
}

.contact2-content h1 span {
  display: block;
  color: var(--green-dark);
}

.contact2-description {
  margin-bottom: 38px;

  font-size: 17px;
  line-height: 1.75;

  color: var(--text-soft);
}

.contact2-benefits {
  border-top: 1px solid var(--border);
}

.contact2-benefits > div {
  padding: 20px 0;

  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;

  border-bottom: 1px solid var(--border);
}

.contact2-benefits > div > span {
  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.contact2-benefits strong {
  display: block;
  margin-bottom: 5px;

  font-size: 15px;
}

.contact2-benefits p {
  font-size: 13px;
  line-height: 1.55;

  color: var(--text-soft);
}

.contact2-direct {
  margin-top: 32px;

  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.contact2-direct a {
  text-decoration: none;
}

.contact2-direct small {
  display: block;
  margin-bottom: 6px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;

  color: #7b857a;
}

.contact2-direct strong {
  font-size: 13px;
}

.contact2-form-shell {
  padding: 38px;

  border: 1px solid var(--border);
  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 30px 80px rgba(30,70,40,.11);
}

.contact2-form-top {
  margin-bottom: 15px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.contact2-form-top small {
  display: block;
  margin-bottom: 7px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;

  color: var(--green-dark);
}

.contact2-form-top h2 {
  font-size: 28px;
  line-height: 1.15;
}

.contact2-status {
  padding: 7px 9px;

  border-radius: 99px;

  font-size: 8px;
  font-weight: 800;

  color: var(--green-dark);
  background: var(--green-soft);
}

.contact2-form-intro {
  margin-bottom: 28px;

  font-size: 13px;
  line-height: 1.65;

  color: var(--text-soft);
}

.contact2-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.contact2-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.contact2-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact2-group label {
  font-size: 12px;
  font-weight: 700;
}

.contact2-group input,
.contact2-group select,
.contact2-group textarea {
  width: 100%;
  padding: 14px 15px;

  outline: none;

  border: 1px solid #dce5d9;
  border-radius: 10px;

  color: #171917;
  background: #fbfdf9;

  transition:
    border .2s ease,
    box-shadow .2s ease;
}

.contact2-group textarea {
  min-height: 130px;
  resize: vertical;
}

.contact2-group input:focus,
.contact2-group select:focus,
.contact2-group textarea:focus {
  border-color: var(--green-dark);

  box-shadow:
    0 0 0 3px rgba(35,131,59,.08);
}

.contact2-submit {
  width: 100%;
  padding: 16px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-radius: 11px;

  cursor: pointer;

  font-size: 14px;
  font-weight: 800;

  color: #fff;
  background: var(--black);
}

.contact2-note {
  text-align: center;

  font-size: 10px;

  color: #818981;
}


/* CONTACT OPTIONS */

.contact2-options {
  padding: 110px 0;
  background: #fff;
}

.contact2-options-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.contact2-options-heading h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.04;
  letter-spacing: -2.4px;
}

.contact2-options-heading h2 span {
  display: block;
  color: var(--green-dark);
}

.contact2-options-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.contact2-option-card {
  min-height: 260px;
  padding: 28px;

  display: grid;
  grid-template-columns: 35px 1fr 25px;
  gap: 15px;
  align-items: start;

  border: 1px solid var(--border);
  border-radius: 20px;

  text-decoration: none;

  background: var(--green-pale);

  transition: transform .2s ease;
}

.contact2-option-card:hover {
  transform: translateY(-4px);
}

.contact2-option-card > span {
  font-size: 10px;
  font-weight: 800;

  color: var(--green-dark);
}

.contact2-option-card small {
  display: block;
  margin-bottom: 8px;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;

  color: var(--green-dark);
}

.contact2-option-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.contact2-option-card p {
  font-size: 13px;
  line-height: 1.65;

  color: var(--text-soft);
}


/* CONTACT NEXT */

.contact2-expect {
  padding: 110px 0;

  color: #fff;
  background: var(--black);
}

.contact2-expect .section-eyebrow {
  color: var(--green);
}

.contact2-expect-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.contact2-expect h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.04;
  letter-spacing: -2.4px;
}

.contact2-expect h2 span {
  display: block;
  color: var(--green);
}

.contact2-expect-list {
  border-top: 1px solid rgba(255,255,255,.1);
}

.contact2-expect-list > div {
  padding: 25px 0;

  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 18px;

  border-bottom: 1px solid rgba(255,255,255,.1);
}

.contact2-expect-list > div > span {
  font-size: 10px;
  font-weight: 800;

  color: var(--green);
}

.contact2-expect-list strong {
  display: block;
  margin-bottom: 7px;

  font-size: 17px;
}

.contact2-expect-list p {
  font-size: 13px;
  line-height: 1.65;

  color: #9da59b;
}

.contact2-final {
  padding: 95px 0;
  background: var(--green);
}

.contact2-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact2-final h2 {
  font-size: clamp(42px,5vw,62px);
  line-height: 1.03;
  letter-spacing: -2.5px;
}

.contact2-final h2 span {
  display: block;
}


/* =========================================================
   FINAL FOOTER — ALL PAGES
========================================================= */

.site-footer {
  width: 100%;
  padding: 75px 0 24px;

  color: #fff;
  background: #191b19;
}

.footer-grid {
  padding-bottom: 55px;

  display: grid;
  grid-template-columns:
    1.15fr
    .75fr
    1.15fr
    1.15fr;

  gap: 60px;

  align-items: start;
}

.footer-column h4 {
  margin: 0 0 20px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;

  color: var(--green);
}

.footer-address p {
  max-width: 280px;

  font-size: 13px;
  line-height: 1.85;

  color: #b5beb3;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links a {
  width: fit-content;

  text-decoration: none;

  font-size: 12px;
  line-height: 1.5;

  color: #b5beb3;

  transition:
    color .2s ease,
    transform .2s ease;
}

.footer-links a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer-services .footer-links {
  max-width: 240px;
}

.footer-follow {
  margin: 0 0 18px;

  font-size: 12px;

  color: #b5beb3;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;

  text-decoration: none;

  font-size: 15px;

  color: #fff;
  background: rgba(255,255,255,.02);

  transition:
    transform .22s ease,
    color .22s ease,
    background .22s ease,
    border-color .22s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);

  color: #191b19;
  background: var(--green);
  border-color: var(--green);
}

.footer-contact {
  margin-top: 30px;
  padding-top: 24px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-contact h5 {
  margin-bottom: 4px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.3px;

  color: var(--green);
}

.footer-contact a {
  width: fit-content;

  text-decoration: none;

  font-size: 12px;

  color: #b5beb3;
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-bottom {
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border-top: 1px solid rgba(255,255,255,.10);
}

.footer-bottom p {
  font-size: 10px;
  color: #818a7f;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  text-decoration: none;

  font-size: 10px;

  color: #818a7f;
}

.footer-bottom a:hover {
  color: var(--green);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .hero-grid,
  .why-grid,
  .local-grid,
  .about2-grid,
  .services2-hero-grid,
  .work2-hero-grid,
  .contact2-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .services2-visual,
  .work2-visual {
    margin-top: 20px;
  }

  .services-grid,
  .work-grid,
  .choose-grid,
  .principles-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .faq-grid,
  .contact2-expect-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services2-process-grid,
  .work2-approach-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .services2-process-grid > div,
  .work2-approach-grid > div {
    border-bottom: 1px solid #cdddc8;
  }

  .work2-project {
    grid-template-columns: 1fr;
  }

  .work2-reverse .work2-project-visual,
  .work2-reverse .work2-project-content {
    order: initial;
  }

  .contact2-options-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 50px 65px;
  }

}


/* =========================================================
   NAV MOBILE
========================================================= */

@media (max-width: 760px) {

  .header {
    min-height: 82px;
  }

  .mobile-menu,
  .mobile-menu-btn {
    display: block;
  }

  .nav-btn {
    display: none;
  }

  .nav-wrapper {
    position: relative;
  }

  .nav-wrapper nav,
  .nav-menu {
    display: none;

    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 999;

    padding: 15px;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: #fff;

    box-shadow:
      0 20px 50px rgba(0,0,0,.12);
  }

  .nav-wrapper nav.open,
  .nav-wrapper nav.active,
  .nav-menu.open,
  .nav-menu.active {
    display: flex;
  }

  .nav-wrapper nav a,
  .nav-menu a {
    width: 100%;
    padding: 13px 5px;

    border-bottom: 1px solid #eef1ed;
  }

  .nav-wrapper nav a:last-child,
  .nav-menu a:last-child {
    border-bottom: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .hero,
  .services,
  .why,
  .local,
  .work,
  .choose,
  .faq,
  .about2-hero,
  .about-principles,
  .services2-hero,
  .services2-list,
  .services2-process,
  .work2-hero,
  .work2-projects,
  .work2-approach,
  .contact2-hero,
  .contact2-options,
  .contact2-expect {
    padding: 75px 0;
  }

  .logo {
    width: 105px;
  }


  /* HOME */

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -2.5px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-image-shell {
    height: 440px;
    border-radius: 22px;
  }

  .floating-card {
    display: none;
  }

  .services-grid,
  .work-grid,
  .choose-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .why-photo {
    min-height: auto;
  }

  .why-photo img {
    height: 440px;
  }

  .local-city-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .local-stats {
    grid-template-columns: 1fr;
  }

  .work-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-answer {
    padding-right: 0;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  /* ABOUT */

  .about2-content h1 {
    font-size: 46px;
    letter-spacing: -2.3px;
  }

  .about2-description {
    font-size: 16px;
  }

  .about2-proof {
    grid-template-columns: 1fr;
  }

  .about2-proof div {
    padding: 16px 0;

    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .about2-proof div:last-child {
    border-bottom: 0;
  }

  .about2-visual {
    min-height: auto;
  }

  .about2-dashboard {
    padding: 20px;
    border-radius: 21px;
  }

  .about2-growth-box {
    grid-template-columns: 1fr;
  }

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

  .about2-floating-card {
    display: none;
  }

  .about2-dashboard-footer {
    flex-wrap: wrap;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  /* SERVICES */

  .services2-hero h1 {
    font-size: 46px;
    letter-spacing: -2.3px;
  }

  .services2-description {
    font-size: 16px;
  }

  .services2-visual {
    min-height: auto;
  }

  .services2-system {
    padding: 20px;
  }

  .services2-core {
    height: 420px;
  }

  .services2-core-center {
    width: 115px;
    height: 115px;
  }

  .services2-core-item {
    width: 115px;
  }

  .service-search {
    top: 25px;
    left: 15px;
  }

  .service-paid {
    top: 25px;
    right: 15px;
  }

  .service-web {
    bottom: 25px;
    left: 15px;
  }

  .service-ai {
    right: 15px;
    bottom: 25px;
  }

  .services2-system-bottom {
    flex-direction: column;
  }

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

  .services2-wide {
    grid-column: span 1;
  }

  .services2-wide-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services2-process-grid {
    grid-template-columns: 1fr;
  }

  .services2-process-grid > div {
    border-right: 0;
  }

  .services2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  /* WORK */

  .work2-hero h1 {
    font-size: 46px;
    letter-spacing: -2.3px;
  }

  .work2-description {
    font-size: 16px;
  }

  .work2-dashboard {
    padding: 20px;
  }

  .work2-performance {
    grid-template-columns: 1fr;
  }

  .work2-metrics {
    grid-template-columns: 1fr;
  }

  .work2-project-visual {
    min-height: 360px;
    padding: 25px;
  }

  .work2-project-content {
    padding: 35px 25px;
  }

  .work2-browser {
    width: 100%;
  }

  .work2-ads-main {
    grid-template-columns: 1fr;
  }

  .automation-flow {
    flex-direction: column;
  }

  .automation-flow > span {
    transform: rotate(90deg);
  }

  .work2-approach-grid {
    grid-template-columns: 1fr;
  }

  .work2-approach-grid > div {
    border-right: 0;
  }

  .work2-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  /* CONTACT */

  .contact2-content h1 {
    font-size: 45px;
    letter-spacing: -2.2px;
  }

  .contact2-form-shell {
    padding: 25px 20px;
  }

  .contact2-form-top {
    flex-direction: column;
  }

  .contact2-row {
    grid-template-columns: 1fr;
  }

  .contact2-direct {
    flex-direction: column;
    gap: 20px;
  }

  .contact2-expect-grid {
    grid-template-columns: 1fr;
  }

  .contact2-final-inner {
    flex-direction: column;
    align-items: flex-start;
  }


  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-services .footer-links {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

}