* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f58212;
  --orange-dark: #f57c00;
  --text: #2f3035;
  --muted: #44474d;
  --bg: #f3f3f3;
  --white: #ffffff;
  --line: #e1ab78;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.page-wrap {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
}

.container {
  width: min(1410px, calc(100% - 120px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: relative;
  z-index: 20;
  padding: 22px 0 0;
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  width: 115px;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px 0 30px 30px;
  font-weight: 700;
  transition: 0.2s ease;
  white-space: nowrap;
}

.btn-demo {
  background: var(--orange-dark);
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
  min-width: 190px;
}

.btn-demo:hover {
  transform: translateY(-1px);
}

.btn-login {
  border: 1.5px solid #efac78;
  background: transparent;
  color: var(--orange-dark);
  font-size: 15px;
  padding: 12px 30px;
  min-width: 170px;
}

/* HERO */
.hero-section {
  position: relative;
  padding: 42px 0;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
}

.hero-grid {
  position: relative;
  gap: 30px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  padding-top: 48px;
}

.hero-content {
  max-width: 700px;
  padding-top: 44px;
  position: relative;
  z-index: 4;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -2px;
  color: #2f3137;
  max-width: 700px;
}

.hero-content p {
  margin-top: 30px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.95;
  color: #3b4047;
  font-weight: 400;
}

.hero-buttons {
  margin-top: 46px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn-primary {
  border-radius: 24px 0 24px 24px;
  background: var(--orange-dark);
  color: #fff;
  font-size: 15px;
  padding: 12px 30px;
}

.btn-outline {
  border-radius: 24px 0 24px 24px;
  border: 2px solid #efac78;
  background: transparent;
  color: var(--orange-dark);
  font-size: 15px;
  padding: 12px 30px;
}

.visual-circle {
  position: absolute;
  top: 18px;
}

/* BOTTOM ORANGE SECTION */
.focus-section {
  position: relative;
  background: var(--orange-dark);
  padding: 145px 0 110px;
  z-index: 2;
}

.focus-inner {
  text-align: center;
  max-width: 1280px;
  position: relative;
  z-index: 3;
}

.focus-inner h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.focus-inner p {
  margin: 28px auto 0;
  max-width: 1410px;
  color: #fff;
  font-size: 17px;
  line-height: 2;
  font-weight: 400;
}

.focus-inner strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .container {
    width: calc(100% - 34px);
  }

  .main-photo {
    width: 110%;
  }

    .hero-section {
    min-height: auto;
    padding: 24px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 20px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 10px;
  }

  .visual-circle {
    position: relative;
    right: auto;
    top: auto;
    width: 560px;
    margin: 0 auto;
  }

  .focus-section {
    padding: 105px 0 82px;
  }

  .site-header {
    padding-top: 16px;
  }

  @media (max-width: 768px) {
  .header-actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .btn-demo,
  .btn-login {
    display: inline-flex;
    padding: 10px 16px;
    min-width: auto;
    font-size: 14px;
  }
}
  
  .hero-content h1 {
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -1px;
  }

  .hero-content p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-buttons {
    margin-top: 26px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-outline {
    min-width: 150px;
    height: 56px;
    font-size: 16px;
    border-radius: 18px 0 18px 18px;
  }

  .visual-circle {
    width: 360px;
  }

  .focus-section {
    padding: 80px 0 62px;
  }

  .focus-inner h2 {
    font-size: 28px;
  }

  .focus-inner p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================
   WHY REZGO SECTIONS
========================= */

.why-section {
  background: #f3f3f3;
  padding: 120px 0 80px;
  overflow: hidden;
}

.why-section-01 {
  padding-top: 120px;
}

.why-section-02,
.why-section-03 {
  padding-top: 90px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.why-grid.reverse .why-content {
  order: 1;
}

.why-grid.reverse .why-media {
  order: 2;
}

.why-media {
  position: relative;
}

.why-media-wrap {
  position: relative;
  width: 100%;
  max-width: 760px;
  min-height: 560px;
}

.why-main-img {
  position: absolute;
  left: 10px;
  top: 35px;
  width: 560px;
  z-index: 1;
}

.why-device-img {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
}

.why-mini-img {
  position: absolute;
  left: 520px;
  top: 435px;
  width: 82px;
  z-index: 4;
}

.why-accent {
  position: absolute;
  z-index: 0;
}

.why-accent-orange {
  left: 385px;
  top: 340px;
  width: 170px;
  height: 170px;
  background: #f7941d;
  border-radius: 50%;
  opacity: 0.9;
}

.why-corner {
  position: absolute;
  right: 38px;
  top: 74px;
  width: 165px;
  height: 165px;
  border-top: 28px solid #f7941d;
  border-left: 28px solid #f7941d;
  border-top-left-radius: 90px;
  z-index: 0;
  opacity: 0.95;
}

.why-dash-line {
  position: absolute;
  right: 105px;
  top: 138px;
  width: 175px;
  height: 140px;
  border-top: 3px dashed #17b7d8;
  border-right: 3px dashed #17b7d8;
  border-top-right-radius: 130px;
  transform: rotate(18deg);
  z-index: 2;
}

.why-arrow-shape {
  position: absolute;
  left: 58px;
  bottom: 78px;
  width: 130px;
  height: 12px;
  background: #cdeef5;
  transform: rotate(-32deg);
  z-index: 3;
}

.why-arrow-shape::before {
  content: "";
  position: absolute;
  right: -2px;
  top: -7px;
  width: 28px;
  height: 28px;
  border-top: 12px solid #cdeef5;
  border-right: 12px solid #cdeef5;
  transform: rotate(45deg);
}

.why-arrow-shape::after {
  content: "";
  position: absolute;
  left: 58px;
  top: 0;
  width: 55px;
  height: 12px;
  background: #cdeef5;
  transform: rotate(-34deg);
  transform-origin: left center;
}

.why-content {
  position: relative;
  max-width: 700px;
}

.why-number {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: #f0ddd1;
  position: absolute;
  top: -32px;
  left: 0;
  z-index: 0;
  letter-spacing: -4px;
}

.why-label {
  position: relative;
  z-index: 1;
  color: #f57c00;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 34px;
}

.why-content h2 {
  position: relative;
  z-index: 1;
  font-size: 36px;
  line-height: 1.14;
  font-weight: 700;
  color: #000;
  letter-spacing: -1.5px;
}

.why-content p {
  margin-top: 34px;
  font-size: 19px;
  line-height: 1.9;
  color: #555b63;
  max-width: 760px;
}

.why-list {
  margin-top: 34px;
}

.why-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 60px;
  max-width: 760px;
}

.why-list ul {
  list-style: none;
}

.why-list li {
  position: relative;
  padding-left: 35px;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 14px;
  font-weight: 500;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f7941d;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  min-width: 230px;
  height: 78px;
  padding: 0 36px;
  border-radius: 26px 0 26px 26px;
  background: linear-gradient(180deg, #f57c00 0%, #f7941d 100%);
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}

/* section 2 custom positions */
.why-section-02 .why-media-wrap {
  max-width: 760px;
}

.why-section-02 .why-main-img {
  left: 185px;
  top: 55px;
  width: 500px;
}

.why-section-02 .why-mini-img {
  left: 365px;
  top: 455px;
  width: 64px;
}

/* section 3 custom positions */
.why-section-03 .why-main-img {
  left: 5px;
  top: 62px;
  width: 560px;
}

.why-section-03 .why-mini-img {
  left: 490px;
  top: 438px;
  width: 72px;
}

/* responsive */
@media (max-width: 1400px) {
  .why-content h2 {
    font-size: 48px;
  }

  .why-content p {
    font-size: 19px;
  }

  .why-media-wrap {
    transform: scale(0.92);
    transform-origin: left center;
  }
}

@media (max-width: 1200px) {
  .why-grid,
  .why-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-grid.reverse .why-content,
  .why-grid.reverse .why-media {
    order: initial;
  }

  .why-media-wrap {
    margin: 0 auto;
    transform: scale(0.9);
    transform-origin: center top;
  }

  .why-content {
    max-width: 100%;
  }

  .why-content h2 {
    font-size: 44px;
  }

  .why-content p {
    font-size: 18px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .why-section {
    padding: 56px 0 34px;
  }

  .why-grid,
  .why-grid.reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .why-grid.reverse .why-content,
  .why-grid.reverse .why-media {
    order: initial;
  }

  .why-media {
    width: 100%;
  }

  .why-media-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: 250px;
    margin: 0 auto 8px;
    transform: none;
  }

  /* section 1 */
  .why-section-01 .why-media-wrap {
    height: 255px;
  }

  .why-section-01 .why-device-img {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 340px;
    max-width: none;
    transform: translateX(-50%);
  }

  .why-section-02 .why-main-img {
    left: 50%;
    top: 8px;
    width: 255px;
    transform: translateX(-50%);
  }

  .why-section-02 .why-device-img {
    left: 50%;
    top: 34px;
    width: 340px;
    transform: translateX(-50%);
  }

  .why-section-02 .why-mini-img {
    left: 50%;
    top: 214px;
    width: 42px;
    transform: translateX(78px);
  }

  .why-section-02 .why-outline-orange,
  .why-section-02 .why-corner,
  .why-section-02 .why-dash-line {
    display: none;
  }

  /* section 3 */
  .why-section-03 .why-media-wrap {
    height: 270px;
  }

  .why-section-03 .why-main-img {
    left: 50%;
    top: 20px;
    width: 255px;
    transform: translateX(-50%);
  }

  .why-section-03 .why-device-img {
    left: 50%;
    top: 32px;
    width: 340px;
    transform: translateX(-50%);
  }

  .why-section-03 .why-mini-img {
    left: 50%;
    top: 212px;
    width: 46px;
    transform: translateX(62px);
  }

  .why-section-03 .why-accent,
  .why-section-03 .why-arrow-shape,
  .why-section-03 .why-outline-teal {
    display: none;
  }

  .why-number {
    font-size: 72px;
    top: -8px;
    left: 0;
  }

  .why-label {
    font-size: 15px;
    margin-bottom: 18px;
    letter-spacing: 2px;
  }

  .why-content h2 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .why-content p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.75;
  }

  .why-list {
    margin-top: 22px;
  }

  .why-list.two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-list li {
    font-size: 16px;
    padding-left: 38px;
    margin-bottom: 10px;
  }

  .why-list li::before {
    width: 22px;
    height: 22px;
    font-size: 11px;
    top: 3px;
  }

  .why-btn {
    min-width: 180px;
    height: 58px;
    font-size: 18px;
    border-radius: 20px 0 20px 20px;
    margin-top: 20px;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials-section {
  padding: 120px 0 110px;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.testimonials-kicker {
  display: inline-block;
  color: #f57c00;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonials-header h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.5px;
}

.testimonials-header p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.9;
  color: #555b63;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border-radius: 34px 0 34px 34px;
  padding: 34px 30px;
  box-shadow: 0 18px 50px rgba(18, 22, 33, 0.08);
  border: 1px solid rgba(245, 124, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(18, 22, 33, 0.12);
}

.testimonial-card.featured {
  background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
  border: 1px solid rgba(245, 124, 0, 0.14);
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  color: #f7941d;
  font-size: 20px;
  margin-bottom: 22px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.95;
  color: #31363f;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  background: #eee;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 14px;
  color: #6c727c;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0 60px;
  }

  .testimonials-header {
    margin-bottom: 34px;
  }

  .testimonials-kicker {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .testimonials-header h2 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .testimonials-header p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.8;
  }

  .testimonials-grid {
    gap: 18px;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 24px 0 24px 24px;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
  }

  .testimonial-avatar {
    width: 54px;
    height: 54px;
  }

  .testimonial-author h4 {
    font-size: 16px;
  }

  .testimonial-author span {
    font-size: 13px;
  }
}