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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at top left, rgba(137, 180, 255, 0.20), transparent 35%),
    radial-gradient(circle at top right, rgba(255,255,255,0.7), transparent 30%),
    linear-gradient(to bottom, #f8fafc, #eef2f7);
  color: #1d1d1f;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
    overflow-x: hidden;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 3px 40px;

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

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(0,0,0,0.06);

  z-index: 1000;
}

.navbar h1 {
  font-size: 20px;
  color: #1d1d1f;
}

.navbar p {
  color: #6e6e73;
  font-size: 13px;
}

.navbar nav {
  display: flex;
  gap: 24px;
}

.navbar nav a {
  color: #1d1d1f;
  text-decoration: none;
  transition: 0.3s;
}

.navbar nav a:hover {
  opacity: 0.6;
}

/* LOGO */

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
}

/* HERO */
.hero {
  position: relative;
  isolation: isolate;

  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;

  gap: 80px;

  padding: 120px 60px 60px;

  max-width: 1400px;
  margin: auto;
}

.hero::before {
  content: "";
  position: absolute;

  width: 700px;
  height: 700px;

  top: -150px;
  right: -250px;

  background: radial-gradient(
    circle,
    rgba(120,140,255,0.18),
    transparent 70%
  );

  filter: blur(90px);

  pointer-events: none;

  z-index: -1;
}

.badge {
  display: inline-block;

  padding: 10px 18px;

  border-radius: 999px;

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

  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.06);

  color: #6e6e73;

  margin-bottom: 30px;
}

.hero h2 {
  font-size: 80px;
  line-height: 0.95;
  margin-bottom: 30px;

  color: #1d1d1f;
}

.hero p {
  color: #6e6e73;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.buttons {
  display: flex;
  gap: 16px;
}

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

  border-radius: 18px;

  text-decoration: none;

  transition: all 0.3s ease;
}

.primary-btn {
  background: #1d1d1f;
  color: white;
}

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

.secondary-btn {
  border: 1px solid rgba(0,0,0,0.1);
  color: #1d1d1f;
  background: rgba(255,255,255,0.8);
}

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

/* HERO IMAGE */

.hero-image img {
  width: 100%;
  height: 700px;

  object-fit: cover;

  border-radius: 32px;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08);
}

/* ABOUT */

.section {
  max-width: 1200px;
  margin: auto;

  padding: 120px 60px;

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

  gap: 60px;
}

.section-title p {
  color: #8e8e93;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title h3 {
  font-size: 52px;
  line-height: 1.1;
  color: #1d1d1f;
}

.section-content p {
  color: #6e6e73;
  font-size: 20px;
  line-height: 1.8;
}

/* CARDS */

.cards {
  max-width: 1400px;
  margin: auto;

  padding: 0 60px 120px;

  display: grid;

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

  gap: 28px;
}

.card {
  position: relative;
  overflow: hidden;

  padding: 35px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(248,249,252,0.96) 100%
    );

  border-top: 2px solid rgba(255,255,255,0.95);
  border-left: 1px solid rgba(255,255,255,0.8);

  border-right: 1px solid rgba(220,225,235,0.7);
  border-bottom: 2px solid rgba(210,215,225,0.8);

  box-shadow:
    0 1px 0 rgba(255,255,255,0.8),
    0 0 0 1px rgba(255,255,255,0.5);

  min-height: 240px;

  display: flex;
  flex-direction: column;
}

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

  transition: 0.3s;
}

.card h4 {
  font-size: 24px;

  margin-bottom: 14px;

  color: #1d1d1f;
}

.card p {
  color: #6e6e73;
  font-size: 15px;
  line-height: 1.6;
}

/* QUOTE */

.quote {
  padding: 140px 40px;
  text-align: center;
}

.quote p {
  font-size: 56px;
  line-height: 1.3;
  color: #1d1d1f;
}

/* CONTACT */

.contact {
  max-width: 1200px;

  margin: 80px auto;

  padding: 80px 40px;

  text-align: center;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.78) 0%,
      rgba(250,251,254,0.82) 100%
    );

  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);

  border-top: 2px solid rgba(255,255,255,0.95);
  border-left: 1px solid rgba(255,255,255,0.85);

  border-right: 1px solid rgba(220,225,235,0.75);
  border-bottom: 2px solid rgba(210,215,225,0.85);

  border-radius: 40px;

  box-shadow: none;
}


.contact-top {
  color: #8e8e93;

  text-transform: uppercase;

  letter-spacing: 3px;

  margin-bottom: 45px;

  font-size: 14px;
}

.contact h3 {
  font-size: 52px;
  margin-bottom: 15px;

  color: #1d1d1f;
}

.contact-divider {
  width: 220px;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.15),
    transparent
  );

  margin: 5px auto 50px auto;
}


.contact-description {
  color: #6e6e73;

  max-width: 600px;

  margin: 0 auto 40px;

  line-height: 1.8;
}

.contact-item span {
  display: block;

  color: #8e8e93;

  font-size: 14px;

  margin-bottom: 10px;

  text-transform: uppercase;

  letter-spacing: 1px;
}

.contact-item strong {
  display: block;

  font-size: 26px;

  color: #1d1d1f;

  margin-bottom: 10px;
}

.contact-item small {
  display: block;

  color: #6e6e73;

  font-size: 14px;

  line-height: 1.6;
}

.contact-link {
  text-decoration: none;
}

.contact-location {
  color: #6e6e73;
  margin-top: 30px;
}

/* MOBILE */

@media (max-width: 900px) {

  .hero::before {
    width: 250px;
    height: 250px;
    top: 0;
    right: 0;
    filter: blur(40px);
  }
  .navbar {
    padding: 10px 20px;
  }

  .logo {
    width: 65px;
    height: 65px;
  }

  .navbar h1 {
    font-size: 18px;
  }

  .navbar p {
    font-size: 12px;
  }

  .navbar nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 170px 20px 60px;
    gap: 50px;
  }

  .badge {
    font-size: 13px;
  }

  .hero h2 {
    font-size: 52px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-image img {
    height: auto;
    max-height: 550px;
  }

  .section {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .section-title h3 {
    font-size: 40px;
  }

  .cards {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
  }

  .card {
    min-height: auto;
  }

  .quote {
    padding: 100px 20px;
  }

  .quote p {
    font-size: 36px;
  }

  .contact {
    margin: 40px 15px;
    padding: 50px 20px;
    text-align: center;
    border-radius: 32px;
  }

  .contact h3 {
    font-size: 40px;
  }

  .contact-description {
    max-width: 100%;
    font-size: 17px;
  }

  .contact-item {
    width: 100%;
  }

  .contact-item strong {
    font-size: clamp(16px, 6vw, 26px);
    word-break: break-word;
    line-height: 1.3;
  }

  .contact-item small {
    font-size: 14px;
  }

  .contact-location {
    max-width: 280px;
    margin: 30px auto 0;
    line-height: 1.5;
  }
  

}


.expandable {
  transition: all 0.35s ease;
  cursor: pointer;
}

.expandable.active {
  border-color: rgba(201,171,114,0.45);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    0 0 0 1px rgba(201,171,114,0.25);
}

.extra-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.expandable.active .extra-content {
  max-height: 250px;
  margin-top: 15px;
}

.card-toggle {
  margin-top: auto;
  padding-top: 16px;

  border: none;
  background: none;

  color: #c9ab72;
  font-weight: 600;

  cursor: pointer;
}

.card-toggle:hover {
  opacity: 0.7;
}
.contact-item strong a {
  color: #1d1d1f;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item strong a:visited {
  color: #1d1d1f;
}

.contact-item strong a:hover {
  color: #c9ab72;
}
.process {
  max-width: 1200px;
  margin: auto;
  padding: 0 60px 120px;
}

.center {
  text-align: center;
}

.process-description {
  max-width: 700px;
  margin: 30px auto 70px;
  text-align: center;

  color: #6e6e73;
  font-size: 20px;
  line-height: 1.8;
}

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

.process-item {
  padding: 35px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(248,249,252,0.96) 100%
    );

  border-top: 2px solid rgba(255,255,255,0.95);
  border-left: 1px solid rgba(255,255,255,0.8);
  border-right: 1px solid rgba(220,225,235,0.7);
  border-bottom: 2px solid rgba(210,215,225,0.8);
}

.process-item span {
  font-size: 14px;
  font-weight: 700;
  color: #c9ab72;
  letter-spacing: 2px;
}

.process-item h4 {
  margin: 15px 0;
  font-size: 24px;
}

.process-item p {
  color: #6e6e73;
  line-height: 1.7;
}

@media (max-width: 900px) {

  .process {
    padding: 0 20px 80px;
  }

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

  .process-description {
    font-size: 18px;
  }
  /* PROCESS SECTION */

.process-item {
  position: relative;
  overflow: hidden;

  padding: 35px;

  border-radius: 28px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(248,249,252,0.96) 100%
    );

  border-top: 2px solid rgba(255,255,255,0.95);
  border-left: 1px solid rgba(255,255,255,0.8);

  border-right: 1px solid rgba(220,225,235,0.7);
  border-bottom: 2px solid rgba(210,215,225,0.8);

  box-shadow:
    0 1px 0 rgba(255,255,255,0.8),
    0 0 0 1px rgba(255,255,255,0.5);

  min-height: 240px;

  display: flex;
  flex-direction: column;

  transition: all 0.35s ease;
  cursor: pointer;
}

.process-item span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c9ab72;
}

.process-item h4 {
  margin: 15px 0;
  font-size: 24px;
  color: #1d1d1f;
}

.process-item p {
  color: #6e6e73;
  line-height: 1.7;
}

.process-item.active {
  border-color: rgba(201,171,114,0.45);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.06),
    0 0 0 1px rgba(201,171,114,0.25);

  transform: translateY(-4px);
}

.process-item .extra-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.process-item.active .extra-content {
  max-height: 250px;
  margin-top: 15px;
}
}
