/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, sans-serif;
    background:#000;
    color:#fff;
}

/* CONTAINER */
.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 24px;
}

/* HEADER */
.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.main-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:85px;
}

.logo img{
    height:70px;
}

/* NAV */
.nav-menu{
    display:flex;
    gap:40px;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover{
    color:#ccc;
}

/* BUTTON */
.quote-btn{
    background:#fff;
    color:#000;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    opacity:.85;
}

/* HERO */
.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
}

/* HERO CONTENT */
.hero-content{
    position:relative;
    z-index:2;
    padding-top:120px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid rgba(255,255,255,0.15);
    padding:10px 18px;
    border-radius:50px;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:28px;
    background:rgba(255,255,255,0.03);
}

.hero-content h1{
    font-size:68px;
    line-height:1.05;
    font-weight:800;
    max-width:760px;
    margin-bottom:24px;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    color:rgba(255,255,255,0.75);
    max-width:720px;
    margin-bottom:40px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:70px;
}

.btn-primary{
    background:#fff;
    color:#000;
    padding:18px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.15);
    color:#fff;
    padding:18px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    background:rgba(255,255,255,0.03);
}

/* STATS */
.hero-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid rgba(255,255,255,0.08);
    background:rgba(15,15,15,0.8);
    backdrop-filter:blur(12px);
    border-radius:20px;
    overflow:hidden;
}

.stat-box{
    padding:40px;
    border-right:1px solid rgba(255,255,255,0.08);
}

.stat-box:last-child{
    border-right:none;
}

.stat-box h2{
    font-size:56px;
    margin-bottom:10px;
}

.stat-box span{
    font-size:14px;
    letter-spacing:1px;
    color:rgba(255,255,255,0.65);
}

/* MOBILE MENU */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:2px;
    background:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){

    .hero-content h1{
        font-size:58px;
    }

    .hero-content p{
        font-size:18px;
    }

    .nav-menu{
        position:fixed;
        top:85px;
        right:-100%;
        width:280px;
        height:100vh;
        background:#0f0f0f;
        flex-direction:column;
        padding:40px 30px;
        transition:.4s;
    }

    .nav-menu.active{
        right:0;
    }

    .menu-toggle{
        display:flex;
    }

    .quote-btn{
        display:none;
    }
}

@media(max-width:768px){

    .hero-section{
        padding:120px 0 60px;
    }

    .hero-content h1{
        font-size:44px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .stat-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .stat-box:last-child{
        border-bottom:none;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        text-align:center;
    }
}

.about-section{
    background:#000;
    padding:120px 24px;
    overflow:hidden;
}

.about-container{
    max-width:1280px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:64px;
    align-items:center;
}

.about-image-wrap{
    position:relative;
}

.about-image{
    width:100%;
    border-radius:18px;
    display:block;
    object-fit:cover;
    min-height:620px;
}

.about-badge-card{
    position:absolute;
    right:-20px;
    bottom:-20px;
    width:145px;
    height:145px;
    border-radius:20px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.badge-title{
    color:#fff;
    font-size:52px;
    font-weight:700;
    line-height:1;
}

.badge-text{
    color:rgba(255,255,255,.7);
    font-size:14px;
    letter-spacing:2px;
    margin-top:6px;
}

.about-label{
    display:inline-block;
    color:#d1d5db;
    font-size:12px;
    letter-spacing:4px;
    margin-bottom:24px;
}

.about-title{
    color:#fff;
    font-size:61px;
    line-height:1.05;
    font-weight:700;
    margin-bottom:32px;
    max-width:650px;
}

.about-title span{
    color:#8d8d8d;
}

.about-text{
    color:#9ca3af;
    font-size:20px;
    line-height:1.8;
    margin-bottom:28px;
    max-width:620px;
}

.about-link{
    display:inline-flex;
    align-items:center;
    gap:12px;
    color:#fff;
    text-decoration:none;
    font-size:24px;
    font-weight:600;
    border-bottom:1px solid rgba(255,255,255,.3);
    padding-bottom:8px;
    transition:.3s ease;
}

.about-link:hover{
    gap:18px;
    border-color:#fff;
}

/* Tablet */
@media(max-width:1024px){

    .about-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .about-title{
        font-size:54px;
    }

    .about-image{
        min-height:auto;
    }
}

/* Mobile */
@media(max-width:640px){

    .about-section{
        padding:80px 20px;
    }

    .about-title{
        font-size:42px;
    }

    .about-text{
        font-size:17px;
        line-height:1.7;
    }

    .about-badge-card{
        width:110px;
        height:110px;
        right:10px;
        bottom:10px;
    }

    .badge-title{
        font-size:38px;
    }

    .badge-text{
        font-size:10px;
        letter-spacing:1px;
    }

    .about-link{
        font-size:18px;
    }
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
		background: radial-gradient(ellipse at top, oklch(0.25 0 0) 0%, oklch(0.1 0 0) 70%);
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
}

.services-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top center,
		rgba(255,255,255,0.08),
		transparent 60%);
	pointer-events: none;
}

.services-container {
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.services-heading {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 70px;
}

.services-subtitle {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	color: rgba(255,255,255,0.65);
	margin-bottom: 22px;
}

.services-heading h2 {
	font-size: clamp(38px, 5vw, 68px);
	line-height: 1.05;
	font-weight: 800;
	color: #fff;
	margin: 0 0 24px;
	letter-spacing: -2px;
}

.services-heading h2 span {
	color: rgba(255,255,255,0.45);
}

.services-heading p {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255,255,255,0.58);
	max-width: 720px;
	margin: 0 auto;
}

/* GRID */

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

/* CARD */

.service-card {
	background: rgba(10,10,10,0.95);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 34px 28px;
	min-height: 240px;
	transition: all .35s ease;
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(255,255,255,0.04),
		transparent
	);
	opacity: 0;
	transition: .35s;
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: rgba(255,255,255,0.18);
	background: #0d0d0d;
}

.service-card:hover::before {
	opacity: 1;
}

.service-icon {
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: linear-gradient(
		180deg,
		#f5f5f5,
		#cfcfcf
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #111;
	margin-bottom: 28px;
	box-shadow:
		0 8px 20px rgba(255,255,255,0.08),
		inset 0 1px 1px rgba(255,255,255,0.6);
}

.service-card h3 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 18px;
	letter-spacing: -0.5px;
}

.service-card p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255,255,255,0.55);
	margin: 0;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {

	.services-section {
		padding: 90px 20px;
	}

	.services-heading {
		margin-bottom: 50px;
	}

	.services-heading h2 {
		font-size: 42px;
	}

	.services-heading p {
		font-size: 15px;
		line-height: 1.7;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.service-card {
		min-height: auto;
		padding: 28px 22px;
	}

	.service-card h3 {
		font-size: 22px;
	}
}
/* =========================
   PROJECTS SECTION
========================= */

.projects-section {
	background: #000;
	padding: 120px 24px;
	position: relative;
	overflow: hidden;
}

.projects-container {
	max-width: 1280px;
	margin: 0 auto;
}

/* TOP */

.projects-top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.projects-subtitle {
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 4px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 20px;
}

.projects-heading h2 {
	font-size: 53px;
	line-height: 1.05;
	font-weight: 800;
	letter-spacing: -2px;
	color: #fff;
	margin: 0;
	max-width: 520px;
}

.projects-heading h2 span {
	color: rgba(255,255,255,0.45);
}

.projects-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 8px;
	transition: .3s ease;
}

.projects-link:hover {
	opacity: .7;
}

/* GRID */

.projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 260px;
	gap: 18px;
}

/* CARD */

.project-card {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	background: #111;
	cursor: pointer;
}

.project-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}

.project-card:hover img {
	transform: scale(1.06);
}

.project-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.9),
		rgba(0,0,0,0.1)
	);
}

.project-content {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
}

.project-tag {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.75);
	margin-bottom: 10px;
}

.project-content h3 {
	font-size: 34px;
	font-weight: 700;
	color: #fff;
	margin: 0;
	letter-spacing: -1px;
}

/* DIFFERENT SIZES */

.project-card.tall {
	grid-row: span 2;
}

.project-card.wide {
	grid-column: span 1;
}

.project-card.small {
	height: 260px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

	.projects-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.project-card.tall {
		grid-row: span 1;
		height: 420px;
	}
}

@media (max-width: 768px) {

	.projects-section {
		padding: 90px 20px;
	}

	.projects-top {
		margin-bottom: 40px;
	}

	.projects-heading h2 {
		font-size: 44px;
	}

	.projects-grid {
		grid-template-columns: 1fr;
		grid-auto-rows: 280px;
	}

	.project-card,
	.project-card.tall,
	.project-card.small {
		height: 280px;
		grid-row: auto;
	}

	.project-content h3 {
		font-size: 28px;
	}
}

/* =========================
   WHY SPS SECTION
========================= */

.why-sps-section {
  position: relative;
  background: #000;
  padding: 120px 20px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.why-sps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    #0a0a0a,
    #000000,
    #050505
  );
  z-index: 1;
}

.why-sps-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   HEADING
========================= */

.why-sps-heading {
  text-align: center;
  margin-bottom: 70px;
}

.why-label {
  display: inline-block;
  color: #9ca3af;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.why-sps-heading h2 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -2px;
}

.why-sps-heading h2 span {
  display: block;
  color: #6b7280;
}

/* =========================
   GRID
========================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* =========================
   CARD
========================= */

.why-card {
  position: relative;
  background: #070707;
  border: 1px solid #27272a;
  border-radius: 22px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #52525b;
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid #3f3f46;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 28px;
}

.why-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.why-card p {
  color: #9ca3af;
  font-size: 15px;
  line-height: 1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-sps-heading h2 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-sps-section {
    padding: 90px 20px;
  }

  .why-sps-heading h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .why-card {
    padding: 32px 24px;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  background: #000;
  padding: 120px 24px;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   SECTION HEADING
========================= */

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-label {
  display: inline-block;
  color: #8f8f8f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-heading h2 {
  color: #ffffff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
}

.section-heading h2 span {
  color: #8b8b8b;
}

/* =========================
   TESTIMONIAL GRID
========================= */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 90px;
}

/* =========================
   CARD
========================= */

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.95),
    rgba(5,5,5,0.98)
  );

  border: 1px solid #232323;
  border-radius: 18px;
  padding: 32px;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #505050;
}

.stars {
  color: #d4d4d4;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.testimonial-text {
  color: #f1f1f1;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 36px;
}

.testimonial-footer {
  border-top: 1px solid #1f1f1f;
  padding-top: 20px;
}

.testimonial-footer h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.testimonial-footer span {
  color: #7d7d7d;
  font-size: 14px;
}

/* =========================
   CTA BOX
========================= */

.cta-box {
  position: relative;
  text-align: center;
  padding: 110px 40px;
  border-radius: 24px;
  overflow: hidden;

  background:
    radial-gradient(circle at center,
      rgba(255,255,255,0.05),
      transparent 45%),
    linear-gradient(
      180deg,
      rgba(8,8,8,0.98),
      rgba(2,2,2,1)
    );

  border: 1px solid #1f1f1f;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.03),
      transparent 50%
    );
  pointer-events: none;
}

.cta-box h2 {
  position: relative;
  z-index: 2;

  color: #ffffff;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -3px;
  max-width: 950px;
  margin: 0 auto 28px;
}

.cta-box h2::after {
  content: "";
}

.cta-box p {
  position: relative;
  z-index: 2;

  color: #7d7d7d;
  font-size: 22px;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 50px;
}

/* =========================
   BUTTON
========================= */

.cta-button {
  position: relative;
  z-index: 2;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(
    180deg,
    #ffffff,
    #d6d6d6
  );

  color: #000;
  text-decoration: none;

  padding: 18px 34px;
  border-radius: 12px;

  font-size: 16px;
  font-weight: 600;

  transition: all 0.35s ease;

  box-shadow:
    0 0 40px rgba(255,255,255,0.12);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 60px rgba(255,255,255,0.2);
}

.cta-button span {
  font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 52px;
  }

  .cta-box h2 {
    font-size: 54px;
  }

  .cta-box p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {

  .testimonials-section {
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .cta-box {
    padding: 70px 24px;
  }

  .cta-box h2 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .cta-box p {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  position: relative;
  background: #000;
  border-top: 1px solid #1c1c1c;
  padding-top: 90px;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top,
      rgba(255,255,255,0.03),
      transparent 45%);
  pointer-events: none;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================
   GRID
========================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 70px;
}

/* =========================
   BRAND
========================= */

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.logo-main {
  color: #e5e5e5;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-logo h3 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.footer-brand p {
  color: #8a8a8a;
  font-size: 16px;
  line-height: 1.9;
  max-width: 340px;
  margin-bottom: 30px;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid #2b2b2b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8f8f8f;
  transition: all 0.35s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  border-color: #666;
  color: #fff;
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 17px;
  height: 17px;
}

/* =========================
   LINKS
========================= */

.footer-links h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 26px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 16px;
}

.footer-links a,
.contact-list li {
  color: #8d8d8d;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.8;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-list span {
  margin-top: 2px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid #1a1a1a;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: #6f6f6f;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: #7f7f7f;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;

  width: 54px;
  height: 54px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(
    180deg,
    #f5f5f5,
    #cfcfcf
  );

  color: #000;
  font-size: 22px;
  font-weight: 700;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 0 30px rgba(255,255,255,0.12);

  transition: all 0.35s ease;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 45px rgba(255,255,255,0.2);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 768px) {

  .footer {
    padding-top: 70px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .back-to-top {
    width: 48px;
    height: 48px;
    right: 20px;
    bottom: 20px;
  }
}
/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  position: relative;
  padding: 180px 24px 140px;
  overflow: hidden;
 background: radial-gradient(ellipse at top, oklch(0.25 0 0) 0%, oklch(0.1 0 0) 70%);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top center,
      rgba(255,255,255,0.05),
      transparent 40%
    );

  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-content {
  max-width: 950px;
}

.about-label {
  display: inline-block;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.about-content h1 {
  font-size: 85px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -4px;
  margin-bottom: 38px;
}

.about-content h1 span {
  display: block;
  color: #a3a3a3;
}

.about-content p {
  color: #8d8d8d;
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
}

/* =========================
   STORY SECTION
========================= */

.story-section {
  padding: 80px 24px 120px;
  background: #000;
}

.story-container {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   IMAGE
========================= */

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #1f1f1f;
  min-height: 560px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.7s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */

.story-content {
  max-width: 580px;
}

.story-label {
  display: inline-block;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.story-content h2 {
  font-size: 72px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -3px;
  margin-bottom: 34px;
}

.story-content h2 span {
  display: block;
  color: #9b9b9b;
}

.story-content p {
  color: #8f8f8f;
  font-size: 22px;
  line-height: 1.9;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .about-content h1 {
    font-size: 72px;
  }

  .story-container {
    grid-template-columns: 1fr;
  }

  .story-content {
    max-width: 100%;
  }

  .story-content h2 {
    font-size: 56px;
  }
}

@media (max-width: 768px) {

  .about-hero {
    padding: 140px 20px 100px;
  }

  .about-content h1 {
    font-size: 48px;
    letter-spacing: -2px;
    margin-bottom: 28px;
  }

  .about-content p {
    font-size: 18px;
  }

  .story-section {
    padding: 60px 20px 90px;
  }

  .story-container {
    gap: 40px;
  }

  .story-image {
    min-height: 360px;
  }

  .story-content h2 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .story-content p {
    font-size: 17px;
  }
}

/* =========================
   GLOBAL
========================= */

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section {
  padding: 90px 24px 70px;
  background: #000;
}

.mission-container {
  max-width: 1280px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* =========================
   CARD
========================= */

.mission-card {
  position: relative;

  background:
    linear-gradient(
      180deg,
      rgba(10,10,10,0.98),
      rgba(5,5,5,1)
    );

  border: 1px solid #1f1f1f;
  border-radius: 20px;

  padding: 46px 42px;

  overflow: hidden;

  transition: all 0.4s ease;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.03),
      transparent 50%
    );

  opacity: 0;
  transition: 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: #505050;
}

.mission-card:hover::before {
  opacity: 1;
}

/* =========================
   ICON
========================= */

.mission-icon {
  width: 54px;
  height: 54px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #2b2b2b;

  background: #050505;

  color: #d6d6d6;

  margin-bottom: 30px;
}

.mission-icon svg {
  width: 26px;
  height: 26px;
}

/* =========================
   TEXT
========================= */

.mission-card h3 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;

  margin-bottom: 22px;
}

.mission-card p {
  color: #8d8d8d;
  font-size: 22px;
  line-height: 1.8;
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
  position: relative;
  background: #000;
  padding: 120px 24px 140px;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,0.03),
      transparent 45%
    );

  pointer-events: none;
}

.stats-container {
  position: relative;
  z-index: 2;

  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   HEADING
========================= */

.stats-heading {
  text-align: center;
  margin-bottom: 90px;
}

.stats-label {
  display: inline-block;

  color: #8d8d8d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.stats-heading h2 {
  font-size: 76px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -3px;
}

.stats-heading h2 span {
  display: block;
  color: #a1a1a1;
}

/* =========================
   GRID
========================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =========================
   CARD
========================= */

.stat-card {
  background:
    linear-gradient(
      180deg,
      rgba(10,10,10,0.98),
      rgba(5,5,5,1)
    );

  border: 1px solid #1f1f1f;
  border-radius: 20px;

  padding: 52px 20px;

  text-align: center;

  transition: all 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: #4f4f4f;
}

.stat-card h3 {
  font-size: 76px;
  line-height: 1;
  font-weight: 700;

  color: #d4d4d4;

  margin-bottom: 18px;
}

.stat-card p {
  color: #8c8c8c;
  font-size: 14px;
  letter-spacing: 0.12em;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .mission-container {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-heading h2 {
    font-size: 58px;
  }
}

@media (max-width: 768px) {

  .mission-section {
    padding: 70px 20px 50px;
  }

  .mission-card {
    padding: 34px 26px;
  }

  .mission-card h3 {
    font-size: 32px;
  }

  .mission-card p {
    font-size: 17px;
  }

  .stats-section {
    padding: 90px 20px 100px;
  }

  .stats-heading {
    margin-bottom: 60px;
  }

  .stats-heading h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card h3 {
    font-size: 56px;
  }
}

    .milestone-section{
      width:100%;
      padding:80px 20px 100px;
      background:#000;
    }

    .container{
      max-width:1200px;
      margin:auto;
    }

    .tag{
      color:#9ca3af;
      font-size:12px;
      letter-spacing:3px;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .title{
      font-size:64px;
      font-weight:800;
      line-height:1.1;
      margin-bottom:90px;
    }

    .title span{
      color:#8b8b8b;
    }

    /* Timeline */

    .timeline{
      position:relative;
      width:100%;
      margin-bottom:120px;
    }

    .timeline-line{
      position:absolute;
      left:50%;
      top:0;
      width:1px;
      height:100%;
      background:#222;
      transform:translateX(-50%);
    }

    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:1fr 80px 1fr;
      align-items:center;
      margin-bottom:70px;
    }

    .timeline-dot{
      width:14px;
      height:14px;
      border-radius:50%;
      background:#cfcfcf;
      margin:auto;
      position:relative;
      z-index:2;
    }

    .timeline-year{
      font-size:48px;
      font-weight:700;
      color:#d9d9d9;
    }

    .timeline-text{
      color:#a1a1aa;
      font-size:18px;
      line-height:1.6;
      max-width:420px;
    }

    .left{
      text-align:right;
      padding-right:50px;
    }

    .right{
      text-align:left;
      padding-left:50px;
    }

    /* Cards */

    .features-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:24px;
    }

    .feature-card{
      border:1px solid #1f1f1f;
      background:#050505;
      border-radius:18px;
      padding:34px 28px;
      transition:0.3s ease;
    }

    .feature-card:hover{
      border-color:#333;
      transform:translateY(-4px);
    }

    .icon{
      font-size:24px;
      margin-bottom:28px;
      color:#d4d4d8;
    }

    .feature-title{
      font-size:24px;
      font-weight:700;
      margin-bottom:14px;
    }

    .feature-text{
      color:#9ca3af;
      line-height:1.8;
      font-size:16px;
    }

    /* Responsive */

    @media(max-width:992px){

      .title{
        font-size:48px;
      }

      .features-grid{
        grid-template-columns:1fr 1fr;
      }
    }

    @media(max-width:768px){

      .timeline-line{
        left:20px;
      }

      .timeline-item{
        grid-template-columns:40px 1fr;
      }

      .timeline-center{
        display:flex;
        justify-content:center;
      }

      .timeline-year{
        font-size:32px;
        margin-bottom:10px;
      }

      .timeline-content{
        padding-left:20px;
      }

      .left,
      .right{
        text-align:left;
        padding:0;
      }

      .features-grid{
        grid-template-columns:1fr;
      }

      .title{
        font-size:38px;
      }
    }
    .services-section{
      width:100%;
      background: radial-gradient(ellipse at top, oklch(0.25 0 0) 0%, oklch(0.1 0 0) 70%);
      padding:120px 20px;
    }

    .container{
      max-width:1200px;
      margin:auto;
    }

    /* HEADER */

    .section-tag{
      color:#8b8b8b;
      font-size:12px;
      letter-spacing:3px;
      text-transform:uppercase;
      margin-bottom:20px;
    }

    .section-title{
      font-size:72px;
      line-height:1;
      font-weight:800;
      max-width:700px;
      margin-bottom:30px;
    }

    .section-description{
      color:#9ca3af;
      max-width:600px;
      line-height:1.8;
      font-size:16px;
      margin-bottom:90px;
    }

    /* SERVICE ROW */

    .service-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:60px;
      align-items:center;
      margin-bottom:80px;
    }

    .service-row.reverse{
      direction:rtl;
    }

    .service-row.reverse .service-content{
      direction:ltr;
    }

    .service-image{
      width:100%;
      height:420px;
      border-radius:18px;
      overflow:hidden;
      border:1px solid #171717;
    }

    .service-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    .service-number{
      color:#8b8b8b;
      font-size:12px;
      letter-spacing:3px;
      text-transform:uppercase;
      margin-bottom:18px;
    }

    .service-title{
      font-size:42px;
      font-weight:700;
      margin-bottom:20px;
    }

    .service-description{
      color:#9ca3af;
      line-height:1.9;
      margin-bottom:28px;
      font-size:15px;
    }

    /* FEATURES */

    .feature-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px 30px;
      margin-bottom:30px;
    }

    .feature-item{
      color:#d4d4d8;
      font-size:14px;
      display:flex;
      align-items:center;
      gap:10px;
    }

    .feature-dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:#fff;
      flex-shrink:0;
    }

    /* TAGS */

    .applications-title{
      color:#8b8b8b;
      font-size:11px;
      letter-spacing:2px;
      margin-bottom:14px;
      text-transform:uppercase;
    }

    .tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:34px;
    }

    .tag{
      padding:10px 14px;
      border-radius:999px;
      border:1px solid #1f1f1f;
      background:#0b0b0b;
      color:#d1d5db;
      font-size:12px;
    }

    /* BUTTON */

    .service-btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:16px 26px;
      background:#fff;
      color:#000;
      text-decoration:none;
      border-radius:12px;
      font-size:14px;
      font-weight:600;
      transition:.3s ease;
    }

    .service-btn:hover{
      transform:translateY(-3px);
    }

    /* RESPONSIVE */

    @media(max-width:992px){

      .section-title{
        font-size:52px;
      }

      .service-title{
        font-size:34px;
      }

      .service-row{
        gap:40px;
      }
    }

    @media(max-width:768px){

      .services-section{
        padding:80px 20px;
      }

      .section-title{
        font-size:42px;
      }

      .service-row,
      .service-row.reverse{
        grid-template-columns:1fr;
        direction:ltr;
      }

      .service-image{
        height:320px;
      }

      .feature-list{
        grid-template-columns:1fr;
      }
    }

     .portfolio-section{
      width:100%;
      background: radial-gradient(ellipse at top, oklch(0.25 0 0) 0%, oklch(0.1 0 0) 70%);
      padding:120px 20px;
    }

    .container{
      max-width:1200px;
      margin:auto;
    }

    /* HEADER */

    .section-label{
      color:#8b8b8b;
      font-size:12px;
      letter-spacing:3px;
      text-transform:uppercase;
      margin-bottom:20px;
    }

    .section-title{
      font-size:78px;
      line-height:1;
      font-weight:800;
      max-width:720px;
      margin-bottom:30px;
    }

    .section-title span{
      color:#9ca3af;
    }

    .section-description{
      max-width:620px;
      color:#9ca3af;
      line-height:1.8;
      font-size:17px;
      margin-bottom:50px;
    }

    /* FILTERS */

    .portfolio-filters{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:50px;
    }

    .filter-btn{
      padding:12px 20px;
      border-radius:999px;
      border:1px solid #1f1f1f;
      background:#080808;
      color:#d1d5db;
      font-size:13px;
      cursor:pointer;
      transition:.3s ease;
    }

    .filter-btn.active{
      background:#fff;
      color:#000;
      border-color:#fff;
    }

    .filter-btn:hover{
      border-color:#444;
    }

    /* GRID */

    .portfolio-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }

    /* CARD */

    .portfolio-card{
      position:relative;
      height:470px;
      overflow:hidden;
      border-radius:18px;
      border:1px solid #151515;
      background:#111;
      cursor:pointer;
    }

    .portfolio-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:1s ease;
    }

    .portfolio-card:hover img{
      transform:scale(1.06);
    }

    .portfolio-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(
        to top,
        rgba(0,0,0,.92) 0%,
        rgba(0,0,0,.45) 35%,
        rgba(0,0,0,.05) 100%
      );
    }

    .portfolio-content{
      position:absolute;
      left:24px;
      right:24px;
      bottom:24px;
      z-index:2;
    }

    .portfolio-category{
      font-size:11px;
      letter-spacing:3px;
      color:#d1d5db;
      text-transform:uppercase;
      margin-bottom:12px;
    }

    .portfolio-title{
      font-size:28px;
      font-weight:700;
      margin-bottom:10px;
      line-height:1.2;
    }

    .portfolio-location{
      color:#9ca3af;
      font-size:14px;
    }

    /* RESPONSIVE */

    @media(max-width:1100px){

      .portfolio-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .section-title{
        font-size:60px;
      }
    }

    @media(max-width:768px){

      .portfolio-section{
        padding:80px 20px;
      }

      .portfolio-grid{
        grid-template-columns:1fr;
      }

      .section-title{
        font-size:44px;
      }

      .portfolio-card{
        height:420px;
      }

      .portfolio-title{
        font-size:24px;
      }
    }