@charset "UTF-8";
html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-plan-text);
  font-size: 1rem;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

:root {
  --color-text: #000000;
  --color-plan-text: #6D6D6D;
  --color-highlight: rgba(252, 92, 22, 1);
  --color-white-bg: rgba(255, 255, 255, 1);
  --color-light-black:#6D6D6D;
  --color-about-bg: rgba(255, 248, 244, 1);
  --color-plan-bg: rgba(252, 92, 22, 0.05);
  --color-btn-bg: rgba(240, 240, 240, 1);
  --color-feature-bdr:rgba(255, 255, 255, 0.3);
  --color-about-bdr:rgba(252, 92, 22, 0.2);
  --color-testimonial-lightgray:rgba(255, 255, 255, 0.6);
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  font-size: clamp(1.75rem, 2.5vw + 1.25rem, 5rem);
}

h2 {
  font-size: clamp(1.75rem, 2.3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

h4 {
  font-size: clamp(1.375rem, 0.875rem + 1vh, 3.75rem);
}

p {
  margin-top: 0;
  font-size: 1.125rem;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

.header {
  padding: 1rem 0rem;
  background-color: white;
  z-index: 10;
}
.header__brand {
  width: 48px;
  height: 48px;
  display: block;
  padding: 0rem;
}

.footer {
  background-color: black;
  padding: 80px 0px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.footer__container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__title {
  font-size: 10rem;
  font-weight: 500;
  color: #e8dcc8;
  line-height: 140%;
  letter-spacing: -0.02em;
}
.footer__subtitle {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
  line-height: 140%;
}
.footer__right {
  width: 100%;
}
.footer .contact-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.footer .form-group {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer .form-group__label {
  font-size: 1rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
}
.footer .form-group__input {
  width: 100%;
  padding: 8px 0;
  font-size: 1.125rem;
  font-family: inherit;
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  transition: border-color 0.3s ease;
}
.footer .form-group__input::-moz-placeholder {
  color: #6D6D6D;
}
.footer .form-group__input::placeholder {
  color: #6D6D6D;
}
.footer .form-group__input:focus {
  border-bottom-color: #e8dcc8;
}
.footer .submit-btn {
  align-self: flex-start;
  padding: 18px 0;
  font-size: 1.25rem;
  font-weight: 400;
  font-family: inherit;
  color: #fff;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer .submit-btn:hover {
  color: #e8dcc8;
  transform: translateX(5px);
}
.footer .submit-btn:hover .submit-btn__arrow {
  transform: translateX(5px);
}
.footer .submit-btn__arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer__title {
    font-size: 4rem;
  }
  .footer__subtitle {
    font-size: 1.75rem;
  }
}
@media (max-width: 968px) {
  .footer {
    padding: 60px 0px;
  }
  .footer__container {
    gap: 60px;
  }
  .footer__title {
    font-size: 3.5rem;
  }
  .footer__subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer__title {
    font-size: 3rem;
  }
  .footer__subtitle {
    font-size: 1.375rem;
  }
  .form-group {
    gap: 10px;
  }
  .contact-form {
    gap: 30px;
  }
}
@media (max-width: 640px) {
  .footer {
    padding: 40px 0px;
  }
  .footer__left {
    gap: 20px;
  }
  .footer__title {
    font-size: 2.5rem;
  }
  .footer__subtitle {
    font-size: 1.25rem;
  }
  .form-group__label {
    font-size: 0.875rem;
  }
  .form-group__input {
    padding: 12px 0;
    font-size: 0.938rem;
  }
  .submit-btn {
    padding: 15px 0;
    font-size: 1.125rem;
  }
  .contact-form {
    gap: 25px;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.build {
  /* Image Animation */
  /* Text Animation */
}
.build__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  height: 80vh;
}
.build__image {
  display: flex;
  align-items: end;
  opacity: 0;
  transform: translateY(50px);
  animation: imageFadeUp 1s ease forwards;
}
.build__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  /*transition: transform 0.8s ease;*/
   transform-origin: left bottom;
}
.build__image:hover img {
  /*transform: scale(1.05);*/
}
.build__text {
  opacity: 0;
  transform: translateX(60px);
  animation: textSlideIn 1.2s ease forwards;
  animation-delay: 0.3s;
}
.build__text .small-title {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 1rem;
  display: inline-block;
}
.build__text h1 {
  font-size: 3rem;
  line-height: 120%;
  margin-bottom: 20px;
  color: #000;
  font-weight: 500;
}
@media (max-width: 768px) {
  .build__text h1 {
    font-size: 1.75rem;
  }
}
.build__text p {
  font-size: 1rem;
  color: var(--color-light-black);
  line-height: 140%;
  margin-bottom: 24px;
  max-width: 520px;
}
.build__text .learn-more {
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.build__text .learn-more span {
  display: inline-block;
  animation: arrowBounce 1.5s infinite;
}
.build__text .learn-more:hover {
  text-decoration: underline;
}

/* play */
.playbook {
  padding: 80px 0;
}
.playbook__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .playbook__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.playbook__left {
  position: relative;
}
.playbook__left::after {
  content: "";
  position: absolute;
  left: 0;
  width: 3.5rem;
  height: 1px;
  background-color: black;
  top: 15px;
}
.playbook__left h2 {
  padding-left: 4.375rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%;
  color: #595959;
  max-width: 405px;
}
@media (max-width: 768px) {
  .playbook__left h2 {
    font-size: 20px;
    max-width: 100%;
  }
}
.playbook__right p {
  font-size: 1.75rem;
  font-size: clamp(1.125rem, 2.5vw, 1.75rem);
  line-height: 140%;
  color: #111;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 768px) {
  .playbook__right p {
    font-size: 18px;
    max-width: 100%;
  }
}
.playbook__image {
  height: auto;
  max-height: 31.25rem;
  overflow: hidden;
  border-radius: 0.25rem;
}
.playbook__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .playbook__image {
    height: auto;
  }
  .playbook__image img {
    border-radius: 12px;
  }
}

/* ===== Playbook Animation ===== */
.playbook {
  opacity: 1;
}
.playbook__left, .playbook__right {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}
.playbook__right {
  transition-delay: 0.2s;
}
.playbook__image {
  opacity: 0;
  transform: scale(0.95);
  transition: all 1.1s ease 0.3s;
}
.playbook.animate .playbook__left,
.playbook.animate .playbook__right {
  opacity: 1;
  transform: translateY(0);
}
.playbook.animate .playbook__image {
  opacity: 1;
  transform: scale(1);
}

/* Keyframes */
@keyframes imageFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
/* ✅ Tablet */
@media (max-width: 1024px) {
  .grid {
    gap: 40px;
  }
  .grid__text h2 {
    font-size: 30px;
  }
}
/* ✅ Mobile */
@media (max-width: 768px) {
  .build__grid {
    grid-template-columns: 1fr;
    text-align: left;
    height: 100%;
    gap: 35px;
  }
  .build__text p {
    max-width: 100%;
  }
}
/* ✅ Small Mobile */
@media (max-width: 480px) {
  .build__text h2 {
    font-size: 24px;
  }
}
.services {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.services .service {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
  background-color: #fff;
  position: sticky;
  top: 10%;
}
.services .service:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.services .service.animate {
  opacity: 1;
  transform: translateY(0);
}
.services .service__headerTitle {
  font-size: 64px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .services .service__headerTitle {
    font-size: 2.375rem;
    padding-bottom: 20px;
  }
}
.services .service__contentWrapper {
  display: flex;
  gap: 32px;
}
.services .service__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: 1/span 2;
}
.services .service__number {
  font-size: 0.875rem;
  color: #595959;
  font-weight: 500;
}
.services .service__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
  line-height: 140%;
  max-width: 240px;
}
.services .service__description {
  font-size: 1rem;
  color: #6D6D6D;
  line-height: 140%;
  flex: 1;
}
.services .service__right {
  width: 100%;
}
.services .service__right .service__image {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.services .service__right .service__image.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .service {
    gap: 30px;
  }
  .service__image {
    height: 240px;
  }
  .header__title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .service {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .service__image {
    height: 220px;
  }
  .service__contentWrapper {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .header__title {
    font-size: 1.75rem;
  }
  .service__number {
    font-size: 0.75rem;
  }
  .service__title {
    font-size: 1.25rem;
  }
  .service__description {
    font-size: 0.938rem;
  }
  .service__image {
    height: 180px;
  }
  .service__left {
    gap: 15px;
  }
  .services {
    gap: 40px;
  }
}
.benefits-section {
  padding: 80px 0px;
}
.benefits-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.benefit-card.animate {
  opacity: 1;
  transform: translateY(0);
}
.benefit-card__title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
}
.benefit-card__description {
  font-size: 1rem;
  color: #666;
  line-height: 140%;
}

/* Responsive Design */
@media (max-width: 968px) {
  .benefits-section {
    padding: 60px 0px;
  }
  .benefits-section__grid {
    gap: 60px;
  }
  .benefit-card__title {
    font-size: 2rem;
  }
  .benefit-card__description {
    font-size: 0.938rem;
  }
}
@media (max-width: 768px) {
  .benefits-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .benefit-card__title {
    font-size: 1.875rem;
  }
}
@media (max-width: 640px) {
  .benefits-section {
    padding: 40px 0px;
  }
  .benefits-section__grid {
    gap: 40px;
  }
  .benefit-card {
    gap: 15px;
  }
  .benefit-card__title {
    font-size: 1.625rem;
  }
  .benefit-card__description {
    font-size: 0.875rem;
  }
  .services .service{
      display: block;
  }
  .services .service__title{
      max-width: 100%;
  }
  .services .service__contentWrapper{
      gap: 0;
  }
  /*body{*/
  /*    overflow-x: hidden;*/
  /*    width: 100%;*/
  /*    max-width: 100vw;*/
  /*}*/
}/*# sourceMappingURL=style.css.map */

.footer .submit-btn[type="submit"]{
    padding-right:30px;
    background-image:url("../img/right-arrow-white.svg");
    background-size: 15px 18px;
    background-repeat: no-repeat;
    background-position:right center;
}
.services .service__right .service__image img{
    border-radius: 4px;
    overflow: hidden;
}