* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background-image: url(images/background1.png);
  background-size: cover;
}
.service-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.service-link:hover .service{
    transform:translateX(-6px);
    border-color:#2eb4ff;
    box-shadow:0 0 20px rgba(0,136,255,.28);
}

.service-link:hover b{
    transform:translateX(5px);
}

.service b{
    transition:.3s ease;
}

.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(#fff 1px, transparent 1px),
    radial-gradient(rgba(0, 174, 255, 0.8) 1px, transparent 1px);
  background-size: 90px 90px, 160px 160px;
  animation: drift 45s linear infinite;
  opacity: 0.8;
}
.stars {
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(#fff 1px, transparent 1px),
    radial-gradient(rgba(0, 174, 255, 0.8) 1px, transparent 1px);
  background-size: 90px 90px, 160px 160px;
  opacity: 0.8;
  pointer-events: none;
}

.shooting-stars {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.shooting-stars span {
  position: absolute;
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(0, 170, 255, 0.8), transparent);
  border-radius: 999px;
  filter: drop-shadow(0 0 8px #38bfff);
  animation: shoot 4s linear infinite;
  opacity: 0;
}

.shooting-stars span:nth-child(1) {
  top: 12%;
  left: 75%;
  animation-delay: 0s;
}

.shooting-stars span:nth-child(2) {
  top: 28%;
  left: 90%;
  animation-delay: 1.4s;
  animation-duration: 5s;
}

.shooting-stars span:nth-child(3) {
  top: 45%;
  left: 82%;
  animation-delay: 2.6s;
  animation-duration: 4.5s;
}

.shooting-stars span:nth-child(4) {
  top: 18%;
  left: 55%;
  animation-delay: 3.8s;
  animation-duration: 6s;
}

.shooting-stars span:nth-child(5) {
  top: 60%;
  left: 95%;
  animation-delay: 5s;
  animation-duration: 5.5s;
}

@keyframes shoot {
  0% {
    transform: rotate(-35deg) translateX(0);
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  100% {
    transform: rotate(-35deg) translateX(-900px);
    opacity: 0;
  }
}

.glow {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 62% 54%, rgba(0, 140, 255, 0.35), transparent 20%),
    radial-gradient(circle at 47% 75%, rgba(0, 195, 255, 0.2), transparent 25%);
  pointer-events: none;
}

header {
  position: relative;
  z-index: 10;
  height: 120px;
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.logo {
    display: flex;
    align-items: center;
}
.header-logo {
    width: 180px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0,170,255,.25));
    margin-top: 10px;
}

.header-logo:hover {
    transform: scale(1.03);
}

.card-logo span {
  display: block;
  color: #75cfff;
  letter-spacing: 12px;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 48px;
  text-transform: uppercase;
  font-size: 14px;
}

nav a {
  color: #eee;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}

nav a.active,
nav a:hover {
  color: #19a8ff;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -30px;
  height: 2px;
  background: #159bff;
  box-shadow: 0 0 18px #159bff;
}

.talk-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 34px;

    text-decoration:none;
    color:#fff;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;

    background:linear-gradient(135deg,#1ca6ff,#0067ff);

    border:1px solid rgba(82,196,255,.7);
    border-radius:14px;

    box-shadow:
        0 0 20px rgba(0,140,255,.25),
        inset 0 0 12px rgba(255,255,255,.08);

    transition:.3s ease;
}

.talk-btn span{
    transition:.3s ease;
}

.talk-btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0,140,255,.35),
        0 0 35px rgba(0,170,255,.35);
}

.talk-btn:hover span{
    transform:translateX(6px);
}

.hero{
    display:grid;
    grid-template-columns: 1fr 1fr;
    align-items:center;
    justify-content:center;
    gap:80px;
    max-width:1500px;
    margin:0 auto;
    padding:80px 60px;
}

.eyebrow {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.eyebrow span {
  color: #00aaff;
}

h1 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.08;
  letter-spacing: 5px;
  font-weight: 500;
  text-shadow: 0 5px 18px #000;
}

h1 span {
  color: #128cff;
  font-weight: 800;
  text-shadow: 0 0 28px rgba(0, 140, 255, 0.8);
}

.subtext {
  max-width: 560px;
  margin: 30px 0;
  color: #cdd8e8;
  font-size: 18px;
  line-height: 1.6;
}

.buttons {
  display: flex;
  gap: 22px;
}

.btn {
  padding: 20px 42px;
  border: 1px solid rgba(120, 210, 255, 0.65);
  text-decoration: none;
  color: white;
  cursor: pointer;
  transition: 0.25s;
}

.primary {
  background: linear-gradient(135deg, #2fb3ff, #006fff);
  box-shadow: 0 0 35px rgba(0, 140, 255, 0.45);
}

.secondary {
  background: rgba(5, 15, 28, 0.8);
}

.btn:hover {
  transform: translateY(-4px);
}

.mountain-scene {
  position: relative;
  height: 650px;
}


.hero-graphic{
    width:100%;
    height:650px;
    position:relative;
}
.hero-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
    max-width:650px;
}


.service-card {
  position: relative;
  padding: 24px 28px 28px;
  border: 1px solid rgba(119, 210, 255, 0.55);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.88), rgba(8, 19, 33, 0.72));
  box-shadow:
    inset 0 0 60px rgba(0, 150, 255, 0.08),
    0 0 60px rgba(0, 140, 255, 0.2);
  backdrop-filter: blur(18px);
  gap: 180px;
   justify-self:center;
    width:100%;
    max-width:560px;
}

.card-logo {
  text-align: center;
  margin-bottom: 32px;
  
}

.card-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom: 18px;
    border-bottom:1px solid rgba(90,180,255,.12);
}

.card-logo-img{
    width:300px;    
    height:auto;
    filter: drop-shadow(0 0 8px rgba(0,170,255,.35))
    drop-shadow(0 0 18px rgba(0,170,255,.15));;
}

.service {
  display: grid;
  grid-template-columns: 72px 1fr 28px;
  align-items: center;
  gap: 16px;
  padding: 17px 18px;
  margin: 13px 0;
  border: 1px solid rgba(133, 200, 235, 0.24);
  background: rgba(4, 12, 24, 0.68);
  transition: 0.25s;
}

.service:hover {
  transform: translateX(-6px);
  border-color: #2eb4ff;
  box-shadow: 0 0 20px rgba(0, 136, 255, 0.28);
}

.icon {
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 190, 255, 0.3);
  color: #4cc5ff;
  font-size: 28px;
}

.service h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.service p {
  color: #c5d0dc;
  font-size: 13px;
}

.service b {
  font-size: 28px;
  font-weight: 300;
}

footer {
  position: relative;
  z-index: 5;
  padding: 0 70px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b8c4d2;
}

.socials {
  display: flex;
  gap: 32px;
  font-size: 24px;
}

.bottom-nav {
  display: flex;
  gap: 48px;
  font-size: 13px;
}

.bottom-nav .active {
  color: #15a8ff;
}

@keyframes drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 900px 500px, -600px 400px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 1100px) {
  header {
    padding: 28px;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .mountain-scene {
    height: 420px;
  }

  .service-card {
    margin-top: 30px;
  }

  footer {
    padding: 30px;
    flex-direction: column;
    gap: 24px;
  }
}
.services-page {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 60px 80px;
}

.services-hero {
  max-width: 850px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-panel {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(119, 210, 255, 0.28);
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.82), rgba(8, 19, 33, 0.62));
  box-shadow:
    inset 0 0 45px rgba(0, 150, 255, 0.05),
    0 0 35px rgba(0, 140, 255, 0.08);
  backdrop-filter: blur(16px);
  transition: 0.25s ease;
}

.service-panel:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 195, 255, 0.8);
  box-shadow:
    inset 0 0 45px rgba(0, 150, 255, 0.08),
    0 0 35px rgba(0, 140, 255, 0.22);
}

.service-panel.featured {
  border-color: rgba(77, 195, 255, 0.75);
  background:
    radial-gradient(circle at top right, rgba(0, 157, 255, 0.22), transparent 35%),
    linear-gradient(145deg, rgba(4, 13, 28, 0.92), rgba(8, 19, 33, 0.68));
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.service-top span {
  color: rgba(117, 207, 255, 0.35);
  font-size: 34px;
  font-weight: 800;
}

.service-panel h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.service-panel p {
  color: #c5d0dc;
  line-height: 1.55;
  margin-bottom: 22px;
}

.service-panel ul {
  list-style: none;
}

.service-panel li {
  color: #eaf6ff;
  font-size: 14px;
  margin: 10px 0;
  padding-left: 22px;
  position: relative;
}

.service-panel li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22b6ff;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(0, 145, 255, 0.18), transparent 45%),
    rgba(4, 13, 28, 0.78);
}

.cta-panel .btn {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-page {
    padding: 40px 24px;
  }
}
.portfolio-page {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 60px 90px;
}

.portfolio-hero {
  max-width: 850px;
  margin-bottom: 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  min-height: 460px;
  border: 1px solid rgba(119, 210, 255, 0.28);
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.86), rgba(8, 19, 33, 0.65));
  box-shadow:
    inset 0 0 45px rgba(0, 150, 255, 0.05),
    0 0 35px rgba(0, 140, 255, 0.08);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: 0.25s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 195, 255, 0.8);
  box-shadow:
    inset 0 0 45px rgba(0, 150, 255, 0.08),
    0 0 35px rgba(0, 140, 255, 0.22);
}

.project-card.large {
  grid-column: span 2;
}

.project-preview {
  height: 230px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(0, 145, 255, 0.35), transparent 45%),
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 35%),
    rgba(2, 10, 22, 0.9);
  border-bottom: 1px solid rgba(119, 210, 255, 0.22);
}

.project-preview span {
  color: #75cfff;
  letter-spacing: 3px;
  font-size: 12px;
}

.project-content {
  padding: 26px;
}

.project-type {
  color: #22b6ff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.project-content h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.project-content p {
  color: #c5d0dc;
  line-height: 1.55;
  margin-bottom: 22px;
}

.project-content a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

.project-content a:hover {
  color: #22b6ff;
}

@media (max-width: 1100px) {
  .portfolio-page {
    padding: 40px 24px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }
}

.about-page{

max-width:1500px;

margin:auto;

padding:70px 60px 100px;

position:relative;

z-index:2;

}

.about-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:24px;

margin-top:60px;

}

.about-card{

padding:35px;

border:1px solid rgba(120,210,255,.2);

background:linear-gradient(145deg,rgba(4,13,28,.85),rgba(7,20,38,.55));

backdrop-filter:blur(18px);

}

.about-card h2{

margin-bottom:18px;

}

.about-card p{

line-height:1.8;

color:#d3dbe5;

}

.about-card ul{

list-style:none;

margin-top:20px;

}

.about-card li{

margin:12px 0;

padding-left:20px;

position:relative;

}

.about-card li::before{

content:"→";

position:absolute;

left:0;

color:#1cb5ff;

}

.owner-section{

display:grid;

grid-template-columns:350px 1fr;

gap:60px;

align-items:center;

margin:100px 0;

}

.owner-photo img{

width:100%;

border-radius:20px;

border:1px solid rgba(120,210,255,.3);

}

.owner-text h2{

font-size:48px;

margin:20px 0;

}

.values{

margin-top:80px;

text-align:center;

}

.values-grid{

margin-top:50px;

display:grid;

grid-template-columns:repeat(4,1fr);

gap:20px;

}

.values-grid div{

padding:30px;

background:rgba(5,15,30,.6);

border:1px solid rgba(120,210,255,.15);

}

.values-grid h3{

margin-bottom:12px;

color:#27b5ff;

}

.pricing-page {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 60px 100px;
}

.pricing-hero {
  max-width: 900px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 34px;
  border: 1px solid rgba(119, 210, 255, 0.24);
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.88), rgba(8, 19, 33, 0.62));
  backdrop-filter: blur(16px);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 195, 255, 0.8);
  box-shadow: 0 0 35px rgba(0, 140, 255, 0.22);
}

.featured-price {
  border-color: rgba(77, 195, 255, 0.75);
  box-shadow:
    inset 0 0 60px rgba(0, 150, 255, 0.08),
    0 0 45px rgba(0, 140, 255, 0.18);
}

.plan-label {
  color: #22b6ff;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.pricing-card h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.price {
  font-size: 54px;
  font-weight: 800;
  color: #168fff;
  margin-bottom: 20px;
}

.plan-desc {
  color: #c5d0dc;
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-card li {
  margin: 13px 0;
  padding-left: 22px;
  position: relative;
  color: #eaf6ff;
  font-size: 14px;
}

.pricing-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22b6ff;
}

.pricing-card .btn {
  margin-top: auto;
  text-align: center;
}

.addon-section {
  margin-top: 90px;
}

.addon-heading {
  max-width: 750px;
  margin-bottom: 35px;
}

.addon-heading h2 {
  font-size: 42px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.addon-card {
  padding: 28px;
  border: 1px solid rgba(119, 210, 255, 0.2);
  background: rgba(4, 13, 28, 0.68);
  backdrop-filter: blur(14px);
}

.addon-card h3 {
  margin-bottom: 16px;
}

.addon-price {
  color: #22b6ff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.addon-card p {
  color: #c5d0dc;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .pricing-page {
    padding: 40px 24px;
  }

  .pricing-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }
}
.monthly-support {
  margin-top: 90px;
}

.support-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.support-heading h2 {
  font-size: 42px;
  margin-bottom: 18px;
}

.support-heading p {
  color: #c5d0dc;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.support-plan {
  padding: 32px;
  border: 1px solid rgba(119, 210, 255, 0.24);
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.88), rgba(8, 19, 33, 0.62));
  backdrop-filter: blur(16px);
  min-height: 430px;
  transition: 0.25s ease;
}

.support-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 195, 255, 0.8);
  box-shadow: 0 0 35px rgba(0, 140, 255, 0.22);
}

.support-plan h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.support-price {
  font-size: 46px;
  font-weight: 800;
  color: #168fff;
  margin-bottom: 26px;
}

.support-plan ul {
  list-style: none;
}

.support-plan li {
  margin: 13px 0;
  padding-left: 22px;
  position: relative;
  color: #eaf6ff;
  font-size: 14px;
}

.support-plan li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #22b6ff;
}

@media (max-width: 1100px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 70px 60px 100px;
}

.contact-hero {
  max-width: 900px;
  margin-bottom: 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
}

.contact-form,
.contact-card {
  padding: 34px;
  border: 1px solid rgba(119, 210, 255, 0.24);
  background: linear-gradient(145deg, rgba(4, 13, 28, 0.88), rgba(8, 19, 33, 0.62));
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #eaf6ff;
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(119, 210, 255, 0.28);
  background: rgba(2, 10, 22, 0.82);
  color: white;
  outline: none;
  font-family: inherit;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #22b6ff;
  box-shadow: 0 0 20px rgba(0, 140, 255, 0.18);
}

.contact-card h2 {
  font-size: 32px;
  margin-bottom: 28px;
}

.contact-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(119, 210, 255, 0.13);
}

.contact-item span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 190, 255, 0.3);
  color: #4cc5ff;
  font-size: 24px;
}

.contact-item h3,
.contact-note h3 {
  margin-bottom: 8px;
}

.contact-item p,
.contact-note p {
  color: #c5d0dc;
  line-height: 1.55;
}

.contact-note {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(119, 210, 255, 0.16);
  background: rgba(2, 10, 22, 0.55);
}

@media (max-width: 1100px) {
  .contact-page {
    padding: 40px 24px;
  }

  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 900px) {

  body {
    background-position: center;
    background-attachment: fixed;
  }

  header {
    height: auto;
    padding: 20px 22px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .header-logo {
    width: 120px;
  }

  nav {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 11px;
  }

  nav a.active::after {
    bottom: -8px;
  }

  .talk-btn {
    padding: 12px 18px;
    font-size: 11px;
  }

  .hero,
  .services-page,
  .portfolio-page,
  .about-page,
  .pricing-page,
  .contact-page {
    padding: 35px 20px 70px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .hero-text {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(38px, 12vw, 58px);
    letter-spacing: 3px;
  }

  .subtext {
    font-size: 15px;
    line-height: 1.55;
  }

  .buttons {
    flex-direction: column;
    gap: 14px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .service-card {
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .card-logo-img {
    width: 145px;
  }

  .service {
    grid-template-columns: 56px 1fr 22px;
    gap: 12px;
    padding: 14px;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .service h3 {
    font-size: 12px;
  }

  .service p {
    font-size: 12px;
  }

  .services-grid,
  .portfolio-grid,
  .pricing-grid,
  .support-grid,
  .addon-grid,
  .about-grid,
  .values-grid,
  .contact-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .service-panel,
  .project-card,
  .pricing-card,
  .support-plan,
  .addon-card,
  .about-card,
  .contact-form,
  .contact-card {
    min-height: auto;
    padding: 24px;
  }

  .owner-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px 0;
  }

  .owner-photo img {
    max-width: 280px;
    display: block;
    margin: 0 auto;
  }

  .owner-text h2,
  .addon-heading h2,
  .support-heading h2 {
    font-size: 32px;
  }

  .price,
  .support-price {
    font-size: 42px;
  }

  footer {
    padding: 30px 20px;
    flex-direction: column;
    gap: 22px;
  }

  .bottom-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 480px) {

  header {
    justify-content: center;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .talk-btn {
    width: 100%;
  }

  nav {
    gap: 14px;
  }

  h1 {
    font-size: 40px;
    line-height: 1.12;
  }

  .eyebrow {
    font-size: 12px;
  }

  .service {
    grid-template-columns: 1fr 24px;
  }

  .service .icon {
    display: none;
  }

  .project-preview {
    height: 170px;
  }
}
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(4, 13, 28, 0.75);
  border: 1px solid rgba(119, 210, 255, 0.5);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #75cfff;
  transition: 0.3s ease;
}

@media (max-width: 900px) {
  header {
    position: relative;
    padding: 18px 22px;
  }

  .hamburger {
    display: block;
  }

  .talk-btn {
    display: none;
  }

  nav {
    position: absolute;
    top: 78px;
    left: 22px;
    right: 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px;
    background: rgba(3, 12, 25, 0.96);
    border: 1px solid rgba(119, 210, 255, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.3s ease;
    z-index: 1000;
  }

  nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid rgba(119, 210, 255, 0.12);
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav a.active::after {
    display: none;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}