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

html {
  scroll-behavior: smooth; }

html, body {
  overflow-x: hidden; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #0b0f19;
  line-height: 1.7;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

h1, h2, h3, h4, h5 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em; }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease; }

ul {
  list-style: none; }

img {
  max-width: 100%;
  display: block; }

.container {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto; }

.section-padding {
  padding: 100px 0; }

.text-center {
  text-align: center; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .btn--white {
    background: #ffffff;
    color: #0b0f19; }
    .btn--white:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); }
  .btn--transparent {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: 10px; }
    .btn--transparent:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #ffffff; }
  .btn--white-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 24px; }
    .btn--white-outline:hover {
      background: #ffffff;
      color: #0f332a;
      border-color: #ffffff; }
  .btn--outline-sm {
    border: 1px solid #0b0f19;
    color: #0b0f19;
    padding: 10px 24px;
    font-size: 0.85rem; }
    .btn--outline-sm:hover {
      background: #0b0f19;
      color: #ffffff; }

.label {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #cc8e69;
  font-weight: 700;
  margin-bottom: 15px;
  border-radius: 50px;
  border: 1px solid #cc8e69;
  padding: 5px 12px; }
  .label--dark {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05); }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  color: #ffffff; }
  .navbar__logo {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
    z-index: 52; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 51, 42, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 1.5rem;
    z-index: 51;
    backdrop-filter: blur(10px); }
    .navbar__links.active {
      display: flex; }
    @media (min-width: 768px) {
      .navbar__links {
        display: flex;
        position: static;
        height: auto;
        width: auto;
        background-color: transparent;
        flex-direction: row;
        font-size: 0.95rem;
        backdrop-filter: none;
        gap: 40px; } }
    .navbar__links a {
      opacity: 0.7; }
      .navbar__links a:hover {
        opacity: 1; }
  .navbar__hamburger {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 52;
    transition: 0.3s; }
    @media (min-width: 768px) {
      .navbar__hamburger {
        display: none; } }
    .navbar__hamburger:hover {
      color: #cc8e69; }
  .navbar .btn {
    display: none; }
    @media (min-width: 768px) {
      .navbar .btn {
        display: inline-block; } }

.premium-card {
  background: #ffffff;
  color: #0b0f19;
  padding: 35px;
  border-radius: 30px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05); }
  .premium-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px; }
    .premium-card .card-header .label-text {
      display: block;
      font-size: 0.85rem;
      color: #555d6b;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 5px; }
    .premium-card .card-header .big-number {
      font-family: "Outfit", sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1;
      display: flex;
      align-items: center;
      gap: 15px; }
      .premium-card .card-header .big-number .trend-badge {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 0.9rem;
        background: rgba(34, 197, 94, 0.1);
        color: #15803d;
        padding: 4px 10px;
        border-radius: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 5px; }
    .premium-card .card-header .header-icon {
      width: 50px;
      height: 50px;
      background: #f8f9fa;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #0f332a; }
  .premium-card .chart-wrapper {
    position: relative;
    height: 220px;
    margin-bottom: 25px; }
    .premium-card .chart-wrapper .chart-grid {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      z-index: 1; }
      .premium-card .chart-wrapper .chart-grid span {
        width: 100%;
        height: 1px;
        background: #f0f0f0;
        display: block; }
    .premium-card .chart-wrapper .chart-bars {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      height: 100%;
      padding: 0 10px; }
  .premium-card .bar-group {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 100%; }
  .premium-card .bar {
    width: 35px;
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: height 1s ease-out;
    height: 0;
    animation: growUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
    .premium-card .bar .tooltip {
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
      background: #0b0f19;
      color: #ffffff;
      padding: 4px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 600;
      opacity: 0;
      transition: 0.3s;
      pointer-events: none;
      white-space: nowrap; }
    .premium-card .bar:hover .tooltip, .premium-card .bar .top-tip {
      opacity: 1;
      top: -35px; }
  .premium-card .bar--traffic {
    background: linear-gradient(180deg, #9ca3af 0%, #d1d5db 100%);
    animation-delay: 0.2s;
    height: var(--height); }
  .premium-card .bar--revenue {
    background: linear-gradient(180deg, #cc8e69 0%, #bf7143 100%);
    box-shadow: 0 4px 15px rgba(204, 142, 105, 0.4);
    animation-delay: 0.4s;
    height: var(--height); }
  .premium-card .card-footer {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-top: 1px solid #eaecf0;
    padding-top: 20px; }
    .premium-card .card-footer .legend-item {
      display: flex;
      align-items: center;
      gap: 8px; }
    .premium-card .card-footer .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%; }
    .premium-card .card-footer .traffic-dot {
      background: #9ca3af; }
    .premium-card .card-footer .revenue-dot {
      background: #cc8e69;
      box-shadow: 0 0 10px rgba(204, 142, 105, 0.5); }
  .premium-card .floating-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: float 4s ease-in-out infinite; }
    @media (max-width: 768px) {
      .premium-card .floating-badge {
        right: 0;
        top: -20px; } }
    .premium-card .floating-badge .fb-icon {
      width: 32px;
      height: 32px;
      background: #15803d;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem; }
    .premium-card .floating-badge .fb-text {
      display: flex;
      flex-direction: column; }
      .premium-card .floating-badge .fb-text span {
        font-weight: 700;
        font-size: 0.9rem;
        color: #0b0f19; }
      .premium-card .floating-badge .fb-text small {
        font-size: 0.75rem;
        color: #555d6b; }
@keyframes float {
  0%, 100% {
    transform: translateY(0); }
  50% {
    transform: translateY(-10px); } }
.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1548&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-radius: 0 0 40px 40px;
  overflow: hidden; }
  .hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 51, 42, 0.92) 0%, rgba(20, 26, 32, 0.85) 100%); }
  .hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-top: 80px; }
    @media (min-width: 1024px) {
      .hero__content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center; } }
  .hero__text {
    max-width: 600px; }
    .hero__text .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.1);
      padding: 6px 20px 6px 6px;
      border-radius: 40px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 25px;
      font-size: 0.9rem;
      font-weight: 500; }
      .hero__text .badge-pill .avatars {
        display: flex; }
        .hero__text .badge-pill .avatars img {
          width: 34px;
          height: 34px;
          border-radius: 50%;
          border: 2px solid #ffffff; }
        .hero__text .badge-pill .avatars span + span {
          margin-left: -12px; }
        .hero__text .badge-pill .avatars .add {
          width: 34px;
          height: 34px;
          border-radius: 50%;
          background: #cc8e69;
          color: #ffffff;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 12px;
          border: 2px solid #ffffff; }
    .hero__text h1 {
      font-size: 3rem;
      line-height: 1.1;
      margin-bottom: 25px; }
      @media (min-width: 768px) {
        .hero__text h1 {
          font-size: 4rem; } }
      .hero__text h1 .highlight {
        color: rgba(255, 255, 255, 0.5); }
    .hero__text p {
      font-size: 1.1rem;
      margin-bottom: 40px;
      opacity: 0.85;
      max-width: 480px;
      font-weight: 300; }
    .hero__text .btn-group {
      display: flex;
      align-items: center; }
  .hero__card {
    background: #ffffff;
    color: #0b0f19;
    padding: 25px;
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3); }
    .hero__card .card-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 25px;
      font-weight: 700;
      font-size: 1rem;
      font-family: "Outfit", sans-serif; }
      .hero__card .card-header .legend {
        display: flex;
        gap: 12px;
        font-size: 0.75rem;
        font-weight: 600;
        align-items: center;
        font-family: "Plus Jakarta Sans", sans-serif; }
        .hero__card .card-header .legend .dot {
          width: 8px;
          height: 8px;
          display: inline-block;
          border-radius: 50%; }
        .hero__card .card-header .legend .repay {
          background: #f0f0f0; }
        .hero__card .card-header .legend .sales {
          background: #cc8e69; }
    .hero__card .chart-bars {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      height: 160px; }
      .hero__card .chart-bars .bar-group {
        display: flex;
        gap: 6px;
        align-items: flex-end; }
      .hero__card .chart-bars .bar {
        width: 28px;
        border-radius: 6px;
        position: relative;
        overflow: hidden; }
@keyframes growUp {
  from {
    height: 0; }
  to {
    height: 100%; } }
      .hero__card .chart-bars .bar:nth-child(odd) {
        background: #f0f0f0; }
      .hero__card .chart-bars .bar:nth-child(even) {
        background: #cc8e69; }
      .hero__card .chart-bars .bar--1 {
        height: 40px; }
      .hero__card .chart-bars .bar--2 {
        height: 70px; }
      .hero__card .chart-bars .bar--3 {
        height: 50px; }
      .hero__card .chart-bars .bar--4 {
        height: 100px; }
      .hero__card .chart-bars .bar--5 {
        height: 35px; }
      .hero__card .chart-bars .bar--6 {
        height: 80px; }
      .hero__card .chart-bars .bar--7 {
        height: 60px; }
      .hero__card .chart-bars .bar--8 {
        height: 120px; }

#impact .impact-header {
  display: grid;
  gap: 30px;
  margin-bottom: 70px; }
  @media (min-width: 768px) {
    #impact .impact-header {
      grid-template-columns: 1fr 1.5fr auto;
      align-items: end; } }
  #impact .impact-header h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-top: 10px; }
  #impact .impact-header .impact-desc {
    color: #555d6b;
    max-width: 450px;
    font-size: 1.05rem; }
#impact .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  border-top: 1px solid #eaecf0;
  padding-top: 50px; }
  @media (min-width: 768px) {
    #impact .stats-grid {
      grid-template-columns: repeat(4, 1fr); } }
  #impact .stats-grid .stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: #0f332a; }
  #impact .stats-grid .stat-item p {
    color: #555d6b;
    font-size: 0.95rem;
    font-weight: 500; }

#features {
  background-color: #ffffff;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0.95) 100%), radial-gradient(#d6c0b0 1.5px, transparent 1.5px);
  background-size: 100% 100%, 30px 30px;
  background-position: center; }
  #features .features-layout {
    display: grid;
    gap: 40px; }
    @media (min-width: 1024px) {
      #features .features-layout {
        grid-template-columns: 1fr 1.4fr 1fr;
        align-items: center; } }
  #features .feature-center {
    text-align: center;
    padding: 0 30px; }
    #features .feature-center h2 {
      font-size: 2.5rem;
      margin-bottom: 20px; }
    #features .feature-center p {
      color: #555d6b;
      margin-bottom: 35px;
      font-size: 1.05rem; }
  #features .feature-col {
    display: flex;
    flex-direction: column;
    gap: 25px; }
  #features .feature-card {
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    #features .feature-card:hover {
      border-color: #cc8e69;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
      transform: translateY(-5px); }
    #features .feature-card .icon-box {
      width: 60px;
      height: 60px;
      background: #fff5ee;
      color: #cc8e69;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.4rem; }
    #features .feature-card h4 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 5px; }
    #features .feature-card .small-desc {
      font-size: 0.9rem;
      color: #555d6b;
      line-height: 1.5; }

#contact {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  position: relative; }
  #contact .contact-layout {
    max-width: 600px;
    margin: 0 auto; }
  #contact .contact-header {
    margin-bottom: 40px; }
    #contact .contact-header h2 {
      margin-bottom: 15px;
      color: #0f332a; }
    #contact .contact-header p {
      color: #555d6b;
      font-size: 1.1rem; }
  #contact .form-wrapper {
    padding: 40px;
    margin: 0 auto;
    max-width: 100%; }
    #contact .form-wrapper form {
      display: flex;
      flex-direction: column;
      gap: 20px; }
  #contact .input-group {
    display: flex;
    flex-direction: column;
    text-align: left; }
    #contact .input-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: #0f332a;
      margin-bottom: 8px;
      font-family: "Plus Jakarta Sans", sans-serif; }
    #contact .input-group input {
      width: 100%;
      padding: 14px 18px;
      border-radius: 12px;
      border: 1px solid #eaecf0;
      background: #fcfcfc;
      font-family: "Plus Jakarta Sans", sans-serif;
      font-size: 1rem;
      color: #0b0f19;
      transition: all 0.3s ease;
      outline: none; }
      #contact .input-group input::placeholder {
        color: #adb5bd;
        font-weight: 400; }
      #contact .input-group input:focus {
        border-color: #0f332a;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(15, 51, 42, 0.08); }
      #contact .input-group input.input-error {
        border-color: #ef4444;
        background: #fef2f2; }
        #contact .input-group input.input-error:focus {
          box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1); }
    #contact .input-group .error-msg {
      display: none;
      color: #ef4444;
      font-size: 0.8rem;
      margin-top: 6px;
      font-weight: 500; }
      #contact .input-group .error-msg.visible {
        display: block;
        animation: fadeIn 0.3s ease; }
  #contact .btn--primary-dark {
    background: #0f332a;
    color: #ffffff;
    border: none;
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center; }
    #contact .btn--primary-dark:hover {
      background: #15473a;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(15, 51, 42, 0.3); }
    #contact .btn--primary-dark.success {
      background: #10b981;
      pointer-events: none;
      transform: none;
      box-shadow: none; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.process-section {
  background-color: #0f332a;
  color: #ffffff;
  padding: 120px 0;
  border-radius: 40px;
  margin: 20px;
  position: relative;
  overflow: hidden; }
  .process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%; }
  .process-section .process-title {
    font-size: 2.8rem;
    margin: 25px 0 70px;
    line-height: 1.1; }
    @media (min-width: 768px) {
      .process-section .process-title {
        font-size: 3.5rem; } }
  .process-section .steps-grid {
    display: grid;
    gap: 30px; }
    @media (min-width: 768px) {
      .process-section .steps-grid {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) {
      .process-section .steps-grid {
        grid-template-columns: repeat(4, 1fr); } }
  .process-section .step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
    backdrop-filter: blur(5px); }
    .process-section .step-card:hover {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px); }
    .process-section .step-card .step-num {
      display: block;
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.05);
      font-family: "Outfit", sans-serif;
      margin-bottom: 15px;
      line-height: 1; }
    .process-section .step-card h3 {
      font-size: 1.3rem;
      margin-bottom: 12px; }
    .process-section .step-card p {
      font-size: 0.95rem;
      opacity: 0.7;
      line-height: 1.6; }

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: 0.3s; }
  .partners-grid:hover {
    filter: grayscale(0);
    opacity: 1; }
  .partners-grid .partner-logo {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0b0f19; }
    .partners-grid .partner-logo i {
      font-size: 2.2rem; }

/*# sourceMappingURL=style.css.map */
