/* =========================================
   AROVIQUE DIGITAL
   WEB DESIGN SERVICE PAGE
   ========================================= */


/* =========================================
   RESET
   ========================================= */

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


html {
  scroll-behavior: smooth;
}


body {
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  background: #07080b;
  color: #f7f8fb;

  line-height: 1.6;
  overflow-x: hidden;
}


a {
  color: inherit;
  text-decoration: none;
}


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


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


/* =========================================
   VARIABLES
   ========================================= */

:root {

  --bg: #07080b;

  --surface: #0d0f14;

  --surface-two: #11141b;

  --surface-three: #171a22;

  --violet: #7c5cff;

  --violet-light: #9a84ff;

  --cyan: #22d3ee;

  --white: #f7f8fb;

  --gray: #9fa6b5;

  --gray-dark: #6f7684;

  --line: rgba(255,255,255,0.09);

  --green: #58e28f;

}


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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  min-height: 78px;

  padding: 0 28px;

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

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

  background:
    rgba(7,8,11,0.9);

  backdrop-filter:
    blur(18px);
}


.logo {
  width: 165px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 29px;
}


.nav a {
  color: #b6bdca;

  font-size: 0.82rem;
  font-weight: 600;

  transition:
    color 0.2s ease;
}


.nav a:hover {
  color: white;
}


.nav .nav-button {
  padding: 12px 18px;

  border:
    1px solid
    rgba(124,92,255,0.5);

  border-radius: 10px;

  color: white;

  background:
    rgba(124,92,255,0.12);
}


.nav .nav-button:hover {
  background: var(--violet);
}


.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  border: 0;
  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 6px auto;

  background: white;
}


/* =========================================
   SHARED
   ========================================= */

.section {
  padding: 115px 28px;
}


.section-label,
.eyebrow {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--cyan);

  font-size: 0.67rem;
  font-weight: 800;

  letter-spacing: 0.19em;
}


.section-label.light {
  color: #86ebf8;
}


h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
}


h2 {
  color: white;

  font-size:
    clamp(
      2.7rem,
      5vw,
      5.3rem
    );
}


h2 span {
  background:
    linear-gradient(
      90deg,
      var(--violet-light),
      var(--cyan)
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.button {
  min-height: 52px;

  padding: 0 23px;

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

  border:
    1px solid transparent;

  border-radius: 11px;

  font-size: 0.83rem;
  font-weight: 700;

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


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


.button-primary {
  color: white;

  background:
    linear-gradient(
      135deg,
      #7457ff,
      #5e42f3
    );

  box-shadow:
    0 15px 40px
    rgba(124,92,255,0.23);
}


.button-secondary {
  color: white;

  border-color:
    rgba(255,255,255,0.15);

  background:
    rgba(255,255,255,0.04);
}


.button-secondary:hover {
  border-color:
    rgba(255,255,255,0.35);

  background:
    rgba(255,255,255,0.07);
}


.text-link {
  color: var(--cyan);

  font-size: 0.84rem;
  font-weight: 700;
}


/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;

  min-height: 780px;

  padding: 110px 28px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:

    radial-gradient(
      circle at 85% 15%,
      rgba(34,211,238,0.09),
      transparent 30%
    ),

    radial-gradient(
      circle at 20% 20%,
      rgba(124,92,255,0.12),
      transparent 32%
    ),

    #07080b;
}


.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.2;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.03) 1px,
      transparent 1px
    );

  background-size:
    70px 70px;
}


.hero-grid {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1280px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1.05fr 0.95fr;

  align-items: center;

  gap: 75px;
}


.hero h1 {
  max-width: 760px;

  color: white;

  font-size:
    clamp(
      3.8rem,
      7.4vw,
      7.1rem
    );
}


.hero h1 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #937cff,
      #22d3ee
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero-lead {
  max-width: 650px;

  margin-top: 28px;

  color: #c0c6d1;

  font-size: 1.02rem;
  line-height: 1.85;
}


.hero-secondary {
  max-width: 620px;

  margin-top: 16px;

  color: #858d9c;

  font-size: 0.89rem;
  line-height: 1.8;
}


.hero-actions {
  margin-top: 34px;

  display: flex;
  flex-wrap: wrap;

  gap: 11px;
}


.hero-trust {
  margin-top: 45px;

  display: flex;
  flex-wrap: wrap;

  gap: 10px;
}


.hero-trust span {
  padding: 8px 11px;

  border:
    1px solid
    rgba(255,255,255,0.08);

  border-radius: 8px;

  color: #858d9c;

  background:
    rgba(255,255,255,0.025);

  font-size: 0.67rem;
}


.hero-visual {
  position: relative;

  min-height: 520px;

  display: grid;
  place-items: center;
}


.hero-glow {
  position: absolute;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(124,92,255,0.2),
      rgba(34,211,238,0.08) 50%,
      transparent 70%
    );

  filter: blur(20px);
}


.browser-card {
  position: relative;
  z-index: 2;

  width:
    min(100%,560px);

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,0.1);

  border-radius: 19px;

  background: #10131a;

  box-shadow:
    0 35px 100px
    rgba(0,0,0,0.48);
}


.browser-top {
  min-height: 43px;

  padding: 0 13px;

  display: flex;
  align-items: center;

  gap: 14px;

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

  background: #0d0f14;
}


.browser-dots {
  display: flex;
  gap: 5px;
}


.browser-dots i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #323844;
}


.address-bar {
  flex: 1;

  padding: 5px 12px;

  border-radius: 6px;

  color: #636b79;

  background: #151821;

  font-size: 0.56rem;
}


.browser-content {
  padding: 22px;

  min-height: 400px;

  background:
    linear-gradient(
      140deg,
      #11151d,
      #0d1016
    );
}


.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;

  font-size: 0.7rem;
}


.demo-header > div {
  display: flex;
  gap: 8px;
}


.demo-header span {
  width: 30px;
  height: 4px;

  border-radius: 5px;

  background: #29303c;
}


.demo-hero {
  min-height: 340px;

  display: grid;

  grid-template-columns:
    1fr 0.9fr;

  align-items: center;

  gap: 25px;
}


.demo-hero small {
  color: var(--cyan);

  font-size: 0.46rem;
  letter-spacing: 0.14em;
}


.demo-hero h3 {
  margin-top: 12px;

  color: white;

  font-size: 2.25rem;
}


.demo-hero p {
  width: 90%;
  height: 6px;

  margin-top: 20px;

  border-radius: 5px;

  background: #2a303c;
}


.demo-hero p.short {
  width: 63%;

  margin-top: 8px;
}


.demo-hero button {
  width: 95px;
  height: 31px;

  margin-top: 22px;

  border: 0;

  border-radius: 7px;

  background: var(--violet);
}


.demo-visual {
  position: relative;

  min-height: 250px;
}


.block {
  position: absolute;

  border:
    1px solid
    rgba(255,255,255,0.09);

  border-radius: 13px;

  background:
    linear-gradient(
      145deg,
      rgba(124,92,255,0.25),
      rgba(34,211,238,0.1)
    );

  box-shadow:
    0 20px 45px
    rgba(0,0,0,0.3);
}


.block-one {
  width: 160px;
  height: 190px;

  right: 20px;
  top: 25px;
}


.block-two {
  width: 120px;
  height: 80px;

  left: -5px;
  bottom: 15px;
}


.block-three {
  width: 90px;
  height: 110px;

  right: -10px;
  bottom: -10px;

  background:
    linear-gradient(
      145deg,
      rgba(34,211,238,0.24),
      rgba(124,92,255,0.08)
    );
}


.float-card {
  position: absolute;
  z-index: 4;

  padding: 15px 18px;

  display: flex;
  flex-direction: column;

  border:
    1px solid
    rgba(255,255,255,0.09);

  border-radius: 12px;

  background:
    rgba(14,17,23,0.92);

  backdrop-filter: blur(13px);

  box-shadow:
    0 18px 50px
    rgba(0,0,0,0.3);
}


.float-card strong {
  color: white;

  font-size: 0.83rem;
}


.float-card span {
  color: #7f8796;

  font-size: 0.63rem;
}


.float-one {
  left: -30px;
  bottom: 45px;
}


.float-two {
  right: -20px;
  top: 65px;
}


/* =========================================
   TRUST STRIP
   ========================================= */

.trust-strip {
  min-height: 75px;

  padding: 0 28px;

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

  gap: 28px;

  border-top:
    1px solid
    var(--line);

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

  background: #0a0c10;

  color: #777f8d;

  font-size: 0.65rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}


.trust-strip i {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--violet);
}


/* =========================================
   INTRO
   ========================================= */

.intro {
  background: #090a0e;
}


.intro-grid {
  max-width: 1220px;

  margin: auto;

  display: grid;

  grid-template-columns:
    1fr 0.9fr;

  gap: 110px;
}


.intro-copy {
  padding-top: 55px;
}


.intro-copy p {
  margin-bottom: 20px;

  color: var(--gray);

  line-height: 1.9;
}


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

.services {
  background: var(--surface);
}


.section-heading {
  max-width: 1240px;

  margin: 0 auto 55px;

  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 50px;
}


.section-heading > p {
  max-width: 430px;

  color: var(--gray);

  line-height: 1.8;
}


.service-grid {
  max-width: 1240px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 15px;
}


.service-card {
  min-height: 350px;

  padding: 31px;

  display: flex;
  flex-direction: column;

  border:
    1px solid
    var(--line);

  border-radius: 18px;

  background: #101219;

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


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

  border-color:
    rgba(124,92,255,0.35);

  background: #12151d;
}


.service-card.featured {
  background:
    linear-gradient(
      150deg,
      rgba(124,92,255,0.16),
      #101219 45%
    );

  border-color:
    rgba(124,92,255,0.27);
}


.service-card h3 {
  color: white;

  font-size: 1.45rem;
}


.service-card > p {
  margin-top: 17px;

  color: var(--gray);

  font-size: 0.84rem;
  line-height: 1.8;
}


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

  padding-top: 25px;

  list-style: none;

  display: grid;

  gap: 8px;

  border-top:
    1px solid
    var(--line);

  color: #7f8796;

  font-size: 0.72rem;
}


.service-card li::before {
  content: "→";

  margin-right: 8px;

  color: var(--violet-light);
}


/* =========================================
   ESSENTIALS
   ========================================= */

.essentials {
  background: #08090c;
}


.essentials-card {
  max-width: 1240px;

  margin: auto;

  padding: 70px;

  border:
    1px solid
    rgba(255,255,255,0.09);

  border-radius: 26px;

  background:

    radial-gradient(
      circle at 90% 5%,
      rgba(34,211,238,0.08),
      transparent 30%
    ),

    radial-gradient(
      circle at 10% 90%,
      rgba(124,92,255,0.11),
      transparent 32%
    ),

    #11131a;
}


.essentials-heading {
  max-width: 750px;
}


.essentials-heading p {
  max-width: 570px;

  margin-top: 24px;

  color: var(--gray);

  line-height: 1.8;
}


.essentials-grid {
  margin-top: 65px;

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 14px;
}


.essentials-grid article {
  min-height: 180px;

  padding: 28px 25px;

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

  border:
    1px solid
    var(--line);

  border-radius: 14px;

  background:
    rgba(255,255,255,0.025);
}


.essentials-grid h3 {
  color: white;

  font-size: 1.1rem;
}


.essentials-grid p {
  margin-top: 12px;

  color: #818998;

  font-size: 0.76rem;
  line-height: 1.7;
}


/* =========================================
   PORTFOLIO
   ========================================= */

.portfolio {
  background: #0d0f14;
}


.project-grid {
  max-width: 1240px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 17px;
}


.project-card {
  padding: 10px 10px 24px;

  border:
    1px solid
    var(--line);

  border-radius: 18px;

  background: #11141b;
}


.project-image {
  position: relative;

  height: 370px;

  padding: 25px;

  display: flex;
  align-items: flex-end;

  overflow: hidden;

  border-radius: 12px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}


.project-image:hover {
  transform: scale(0.988);

  filter: brightness(1.07);
}


.project-image:focus-visible {
  outline:
    3px solid
    var(--cyan);

  outline-offset: 4px;
}


.smilecare {
  background:
    linear-gradient(
      145deg,
      #dff8fa,
      #78cdd3
    );
}


.ember {
  background:
    radial-gradient(
      circle at 75% 20%,
      #81401f,
      #21130c 50%,
      #0c0a08 80%
    );
}


.atlas {
  background:
    linear-gradient(
      145deg,
      #203127,
      #8a7759
    );
}


.image-label {
  position: absolute;

  left: 18px;
  top: 18px;

  padding: 7px 9px;

  border-radius: 6px;

  background:
    rgba(0,0,0,0.48);

  color: white;

  font-size: 0.52rem;

  letter-spacing: 0.12em;
}


.fake-window {
  width: 100%;

  padding: 18px;

  border-radius: 11px;

  background:
    rgba(255,255,255,0.89);

  box-shadow:
    0 20px 55px
    rgba(0,0,0,0.15);
}


.fake-nav {
  color: #174148;

  font-size: 0.7rem;
  font-weight: 800;
}


.fake-title {
  max-width: 240px;

  margin-top: 32px;

  color: #16343a;

  font-size: 1.45rem;
  font-weight: 800;

  line-height: 1.1;
}


.dark-window {
  background:
    rgba(17,13,10,0.93);
}


.dark-window .fake-nav {
  color: #d4a463;
}


.dark-window .fake-title {
  color: white;

  font-family:
    Georgia,
    serif;
}


.atlas-window {
  background:
    rgba(244,241,234,0.94);
}


.atlas-window .fake-nav {
  color: #2b3a30;
}


.atlas-window .fake-title {
  color: #24352b;
}


.project-bottom {
  padding: 22px 8px 0;

  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 15px;
}


.project-bottom span {
  color: var(--cyan);

  font-size: 0.58rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}


.project-bottom h3 {
  margin-top: 6px;

  color: white;

  font-size: 1.1rem;
}


.project-bottom a {
  flex-shrink: 0;

  color: #9a84ff;

  font-size: 0.7rem;
  font-weight: 700;
}


.concept-notice {
  max-width: 1240px;

  margin: 25px auto 0;

  padding: 18px 20px;

  display: flex;

  gap: 20px;

  border:
    1px solid
    var(--line);

  border-radius: 12px;

  background: #101219;
}


.concept-notice strong {
  flex-shrink: 0;

  color: white;

  font-size: 0.76rem;
}


.concept-notice p {
  color: #7f8796;

  font-size: 0.73rem;
}


/* =========================================
   PROCESS
   ========================================= */

.process {
  background: #090a0e;
}


.process-grid {
  max-width: 1240px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(3,1fr);
}


.process-step {
  min-height: 230px;

  padding: 36px 30px;

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

  border-top:
    1px solid
    var(--line);

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


.process-step:nth-child(3n) {
  border-right: 0;
}


.process-step:nth-child(n+4) {
  border-bottom:
    1px solid
    var(--line);
}


.process-step h3 {
  color: white;

  font-size: 1.35rem;
}


.process-step p {
  margin-top: 13px;

  color: var(--gray);

  font-size: 0.78rem;
  line-height: 1.75;
}


/* =========================================
   INDUSTRIES
   ========================================= */

.industries {
  background: #0e1016;
}


.industries-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    0.95fr 1.05fr;

  gap: 90px;

  align-items: center;
}


.industries-copy p {
  max-width: 560px;

  margin: 27px 0 32px;

  color: var(--gray);

  line-height: 1.85;
}


.industry-list {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 12px;
}


.industry-list div {
  min-height: 85px;

  padding: 20px;

  display: flex;
  align-items: center;

  border:
    1px solid
    var(--line);

  border-radius: 11px;

  color: #c6ccd6;

  background: #12151c;

  font-size: 0.82rem;
  font-weight: 600;

  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}


.industry-list div:hover {
  transform: translateY(-3px);

  border-color:
    rgba(34,211,238,0.28);
}


/* =========================================
   FAQ
   ========================================= */

.faq {
  background: #090a0e;
}


.faq-grid {
  max-width: 1200px;

  margin: auto;

  display: grid;

  grid-template-columns:
    0.75fr 1.25fr;

  gap: 90px;
}


.faq-heading p {
  max-width: 390px;

  margin: 25px 0;

  color: var(--gray);

  line-height: 1.8;
}


.faq-list details {
  padding: 25px 0;

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


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


.faq-list summary {
  position: relative;

  padding-right: 40px;

  list-style: none;

  color: #e7e9ee;

  font-size: 0.91rem;
  font-weight: 700;

  cursor: pointer;
}


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


.faq-list summary::after {
  content: "+";

  position: absolute;

  right: 0;
  top: -3px;

  color: var(--violet-light);

  font-size: 1.35rem;
}


.faq-list details[open]
summary::after {
  content: "−";
}


.faq-list details p {
  max-width: 680px;

  margin-top: 17px;

  color: var(--gray);

  font-size: 0.81rem;
  line-height: 1.8;
}


/* =========================================
   FINAL CTA
   ========================================= */

.final-cta {
  padding: 95px 28px;

  background:
    linear-gradient(
      120deg,
      #6948f4,
      #5638df 50%,
      #147f93
    );
}


.final-cta-inner {
  max-width: 1200px;

  margin: auto;

  display: flex;

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

  gap: 60px;
}


.final-cta-inner > div:first-child {
  max-width: 760px;
}


.final-cta span {
  color:
    rgba(255,255,255,0.72);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.18em;
}


.final-cta h2 {
  margin-top: 14px;

  color: white;
}


.final-cta h2 strong {
  color: #b9f4fa;
}


.final-cta p {
  margin-top: 18px;

  color:
    rgba(255,255,255,0.76);
}


.cta-actions {
  display: flex;
  flex-direction: column;

  gap: 10px;

  flex-shrink: 0;
}


.button-light {
  color: #31266d;

  background: white;
}


.button-whatsapp {
  color: white;

  border-color:
    rgba(255,255,255,0.3);

  background:
    rgba(0,0,0,0.1);
}


/* =========================================
   PREMIUM FOOTER
   ========================================= */

.footer {
  padding:
    0 28px;

  background:
    #050609;

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


.footer-shell {
  max-width:
    1200px;

  margin:
    auto;

  padding:
    64px 0 26px;
}


.footer-grid {
  display:
    grid;

  grid-template-columns:
    1.6fr 0.8fr 0.8fr 1.1fr;

  gap:
    70px;
}


.footer-brand-column {
  max-width:
    340px;
}


.footer-logo {
  display:
    inline-block;

  width:
    185px;
}


.footer-description {
  margin-top:
    22px;

  color:
    #7d8594;

  font-size:
    0.8rem;

  line-height:
    1.8;
}


.footer-location {
  margin-top:
    24px;

  display:
    flex;

  align-items:
    center;

  gap:
    9px;

  color:
    #8d95a3;

  font-size:
    0.7rem;
}


.footer-status {
  width:
    7px;

  height:
    7px;

  flex-shrink:
    0;

  border-radius:
    50%;

  background:
    var(--green);

  box-shadow:
    0 0 12px
    rgba(88,226,143,0.5);
}


.footer-column {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;
}


.footer-column h3 {
  margin-bottom:
    20px;

  color:
    white;

  font-size:
    0.77rem;

  font-weight:
    700;

  letter-spacing:
    0.04em;
}


.footer-column > a {
  margin-bottom:
    11px;

  color:
    #818998;

  font-size:
    0.72rem;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}


.footer-column > a:hover {
  color:
    var(--cyan);

  transform:
    translateX(3px);
}


.footer-contact-column {
  min-width:
    0;
}


.contact-label {
  margin-bottom:
    5px;

  color:
    #555e6e;

  font-size:
    0.58rem;

  font-weight:
    700;

  letter-spacing:
    0.13em;

  text-transform:
    uppercase;
}


.footer-contact-column
.footer-contact-link {
  margin-bottom:
    22px;

  color:
    #c6ccd6;

  font-size:
    0.76rem;

  overflow-wrap:
    anywhere;
}


.footer-contact-column
.footer-contact-link:hover {
  color:
    var(--cyan);

  transform:
    none;
}


.footer-divider {
  height:
    1px;

  margin-top:
    52px;

  background:
    rgba(255,255,255,0.08);
}


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

  display:
    flex;

  align-items:
    center;

  justify-content:
    space-between;

  gap:
    25px;

  color:
    #555d6b;

  font-size:
    0.64rem;
}


.footer-bottom-links {
  display:
    flex;

  align-items:
    center;

  gap:
    28px;
}


.footer-bottom-links a {
  color:
    #7871a4;

  transition:
    color 0.2s ease;
}


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


.back-to-top {
  color:
    #838b99 !important;
}


.back-to-top:hover {
  color:
    white !important;
}


/* =========================================
   REVEAL
   ========================================= */

.reveal {
  opacity: 0;

  transform:
    translateY(25px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}


.reveal.visible {
  opacity: 1;

  transform:
    translateY(0);
}


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

@media (max-width: 1000px) {

  .nav > a:not(.nav-button) {
    display: none;
  }


  .hero-grid,
  .intro-grid,
  .industries-grid,
  .faq-grid {
    grid-template-columns:
      1fr;
  }


  .hero-grid {
    gap: 50px;
  }


  .service-grid,
  .project-grid,
  .essentials-grid {
    grid-template-columns:
      repeat(2,1fr);
  }


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


  .process-step,
  .process-step:nth-child(3n) {
    border-right:
      1px solid
      var(--line);
  }


  .process-step:nth-child(2n) {
    border-right: 0;
  }


  .footer-grid {
    grid-template-columns:
      1.4fr 1fr 1fr;

    gap:
      45px;
  }


  .footer-contact-column {
    grid-column:
      2 / 4;
  }

}


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

@media (max-width: 720px) {

  .section {
    padding:
      82px 20px;
  }


  .site-header {
    min-height:
      70px;

    padding:
      0 18px;
  }


  .logo {
    width:
      145px;
  }


  .menu-toggle {
    display:
      block;
  }


  .nav {
    position:
      absolute;

    left:
      12px;

    right:
      12px;

    top:
      calc(100% + 7px);

    padding:
      16px;

    display:
      none;

    flex-direction:
      column;

    align-items:
      stretch;

    gap:
      3px;

    border:
      1px solid
      var(--line);

    border-radius:
      14px;

    background:
      #0e1016;

    box-shadow:
      0 25px 65px
      rgba(0,0,0,0.5);
  }


  .nav.open {
    display:
      flex;
  }


  .nav > a,
  .nav > a:not(.nav-button) {
    display:
      block;

    padding:
      11px 9px;
  }


  .nav .nav-button {
    margin-top:
      5px;

    text-align:
      center;
  }


  .hero {
    min-height:
      auto;

    padding:
      80px 20px;
  }


  .hero h1 {
    font-size:
      clamp(
        3.2rem,
        15vw,
        5rem
      );
  }


  .hero-actions {
    flex-direction:
      column;
  }


  .hero-actions .button {
    width:
      100%;
  }


  .hero-visual {
    min-height:
      400px;
  }


  .browser-card {
    width:
      95%;
  }


  .browser-content {
    padding:
      16px;
  }


  .demo-hero {
    min-height:
      290px;

    grid-template-columns:
      1.2fr 0.8fr;
  }


  .demo-hero h3 {
    font-size:
      1.55rem;
  }


  .block-one {
    width:
      110px;

    height:
      150px;
  }


  .block-two {
    width:
      85px;

    height:
      65px;
  }


  .float-one {
    left:
      -5px;
  }


  .float-two {
    right:
      -5px;
  }


  .trust-strip {
    justify-content:
      flex-start;

    overflow-x:
      auto;

    flex-wrap:
      nowrap;

    white-space:
      nowrap;
  }


  .intro-grid {
    gap:
      30px;
  }


  .intro-copy {
    padding-top:
      0;
  }


  .section-heading {
    flex-direction:
      column;

    align-items:
      flex-start;

    gap:
      25px;
  }


  .service-grid,
  .project-grid,
  .essentials-grid,
  .process-grid {
    grid-template-columns:
      1fr;
  }


  .service-card {
    min-height:
      330px;
  }


  .essentials-card {
    padding:
      40px 20px;
  }


  .project-image {
    height:
      340px;
  }


  .project-bottom {
    flex-direction:
      column;

    align-items:
      flex-start;
  }


  .concept-notice {
    flex-direction:
      column;

    gap:
      8px;
  }


  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-child(3n) {
    border-right:
      0;

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


  .industry-list {
    grid-template-columns:
      1fr;
  }


  .faq-grid {
    gap:
      50px;
  }


  .final-cta-inner {
    flex-direction:
      column;

    align-items:
      flex-start;
  }


  .cta-actions {
    width:
      100%;
  }


  .cta-actions .button {
    width:
      100%;
  }


  /* FOOTER MOBILE */

  .footer {
    padding:
      0 20px;
  }


  .footer-shell {
    padding:
      50px 0 24px;
  }


  .footer-grid {
    grid-template-columns:
      1fr 1fr;

    gap:
      42px 28px;
  }


  .footer-brand-column {
    grid-column:
      1 / -1;

    max-width:
      420px;
  }


  .footer-logo {
    width:
      175px;
  }


  .footer-contact-column {
    grid-column:
      1 / -1;
  }


  .footer-divider {
    margin-top:
      42px;
  }


  .footer-bottom {
    align-items:
      flex-start;

    flex-direction:
      column;
  }


  .footer-bottom-links {
    width:
      100%;

    justify-content:
      space-between;
  }

}


/* =========================================
   SMALL PHONES
   ========================================= */

@media (max-width: 470px) {

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


  .footer-brand-column,
  .footer-contact-column {
    grid-column:
      auto;
  }


  .footer-bottom-links {
    align-items:
      flex-start;

    flex-direction:
      column;

    gap:
      10px;
  }

}

/* =========================================================
   MAIN-SITE HEADER MATCH
   This block intentionally overrides the older Web Design
   page header only. The rest of the page remains unchanged.
   ========================================================= */

.site-header {
  position: sticky;
  top: 12px;
  z-index: 1000;

  width: min(
    calc(100% - 40px),
    960px
  );

  min-height: 64px;

  margin: 12px auto 0;

  padding: 0 15px 0 18px;

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

  gap: 18px;

  border:
    1px solid
    rgba(255,255,255,0.10);

  border-radius: 17px;

  background:
    rgba(7,8,11,0.89);

  box-shadow:
    0 18px 50px
    rgba(0,0,0,0.32);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


.logo {
  width: 148px;
  flex-shrink: 0;
}


.nav {
  display: flex;
  align-items: center;

  gap: 16px;
}


.nav > a,
.nav > a:not(.nav-button) {
  display: inline-flex;

  align-items: center;

  padding: 0;

  white-space: nowrap;

  color: #aeb5c1;

  font-size: 0.66rem;
  font-weight: 650;

  transition: color 0.2s ease;
}


.nav > a:hover,
.nav > a:not(.nav-button):hover {
  color: #ffffff;
}


.nav .nav-button {
  min-height: 38px;

  padding: 0 15px;

  display: inline-flex;

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

  margin: 0;

  border: 0;

  border-radius: 9px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #289eff,
      #7c4dff
    );

  box-shadow:
    0 10px 28px
    rgba(74,93,255,0.27);

  font-size: 0.66rem;
  font-weight: 800;
}


.nav .nav-button:hover {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #289eff,
      #7c4dff
    );
}


.menu-toggle {
  display: none;

  width: 40px;
  height: 40px;

  border: 0;

  background: transparent;

  cursor: pointer;
}


.menu-toggle span {
  width: 23px;
  height: 2px;

  margin: 6px auto;

  display: block;

  border-radius: 3px;

  background: #ffffff;
}


/* Keep all header links visible on tablets,
   matching the main Arovique website. */

@media (max-width: 1000px) and (min-width: 761px) {

  .nav {
    gap: 12px;
  }


  .nav > a,
  .nav > a:not(.nav-button) {
    display: inline-flex;

    font-size: 0.60rem;
  }


  .nav .nav-button {
    padding: 0 12px;

    font-size: 0.60rem;
  }

}


/* Mobile header behavior matches the main site. */

@media (max-width: 760px) {

  .site-header {
    width: calc(100% - 24px);

    top: 8px;

    min-height: 64px;

    margin-top: 8px;

    padding: 0 15px 0 18px;
  }


  .logo {
    width: 136px;
  }


  .menu-toggle {
    display: block;
  }


  .nav {
    position: absolute;

    left: 0;
    right: 0;

    top: calc(100% + 8px);

    padding: 13px;

    display: none;

    flex-direction: column;
    align-items: stretch;

    gap: 2px;

    border:
      1px solid
      rgba(255,255,255,0.10);

    border-radius: 12px;

    background: #0b0e14;

    box-shadow:
      0 22px 55px
      rgba(0,0,0,0.46);
  }


  .nav.open {
    display: flex;
  }


  .nav > a,
  .nav > a:not(.nav-button) {
    display: block;

    padding: 10px;

    font-size: 0.72rem;
  }


  .nav .nav-button {
    min-height: 40px;

    margin-top: 5px;

    padding: 0 12px;

    display: flex;

    text-align: center;

    font-size: 0.72rem;
  }

}

