/* ========================================= */
/* AkbarBin UI Framework */
/* Version : 1.0.0 */
/* ========================================= */

/* ========================================= */
/* NAVBAR/HEADER */
/* ========================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  z-index: var(--z-sticky);

  background: rgb(255 255 255 / 90%);
  backdrop-filter: blur(1rem);

  border-bottom: var(--border-width) var(--border-style) var(--color-border);
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero {
  padding-block: var(--space-96);
}

.hero--breadcrumb {
  padding-block-start: var(--space-80);
  padding-block-end: var(--space-96);
}

.hero--document {
  padding-block: var(--space-80);
}

.hero-layout {
  align-items: center;
  gap: var(--space-64);
}

.hero-content {
  max-width: 64rem;
}

.hero-content .badge {
  margin-bottom: var(--space-16);
}

.hero-title {
  margin-bottom: var(--space-24);
}

.hero-description {
  max-width: 54rem;
  margin-bottom: var(--space-32);

  font-size: var(--fs-lg);
  color: var(--color-muted);
  line-height: var(--lh-body);
}

.hero-features {
  justify-content:center;
  margin-top:var(--space-24);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 52rem;
  height: auto;
}

/* ========================================= */
/* BUSINESS */
/* ========================================= */

.business-card {
  align-items: center;
  text-align: center;
}

.business-card .card-title {
  margin-bottom: 0;
}

/* ========================================= */
/* PROCESS */
/* ========================================= */

.process .timeline {
  margin-bottom: var(--space-48);
}

/* ========================================= */
/* ABOUT */
/* ========================================= */

.about-profile {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-24);
}

.profile-photo {
  width: 16rem;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-circle);
  border: 0.4rem solid var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-default);
}

.profile-photo:hover {
  transform: translateY(-0.2rem);
  box-shadow: var(--shadow-lg);
}

.about-content {
  max-width: 64rem;
  margin: 0 auto;
}

.about-content .card-title {
  margin-bottom: var(--space-16);
}

/* ========================================= */
/* PRICING */
/* ========================================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
  align-items: stretch;
}

/* ========================================= */
/* CARD */
/* ========================================= */

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  padding: var(--space-32);
  background-color: var(--color-surface);

  border: var(--border-width) var(--border-style) var(--color-border);
  border-radius: var(--radius-xl);

  box-shadow: var(--shadow-sm);

  transition: var(--transition-default);
}

.pricing-card:hover {
  transform: translateY(-0.4rem);

  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border: 2px solid var(--color-primary);
}

/* ========================================= */
/* BADGE */
/* ========================================= */

.pricing-badge {
  position: absolute;

  top: -1.2rem;
  left: var(--space-24);

  display: inline-flex;
  align-items: center;

  padding: 0.6rem 1.4rem;

  background-color: var(--color-primary);

  color: var(--color-white);

  border-radius: var(--radius-full);

  font-size: var(--fs-xs);
  font-weight: var(--font-weight-semibold);
}

/* ========================================= */
/* HEADER */
/* ========================================= */

.pricing-header {
  margin-bottom: var(--space-32);
}

.pricing-category {
  margin-bottom: var(--space-8);

  color: var(--color-primary);

  font-size: var(--fs-xs);
  font-weight: var(--font-weight-semibold);

  text-transform: uppercase;
  letter-spacing: .08em;
}

.pricing-title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-16);
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);

  margin-bottom: var(--space-16);

  color: var(--color-heading);

  font-weight: 700;
  line-height: 1;
}

.pricing-price small {
  margin-top: .5rem;

  font-size: var(--fs-sm);
}

.pricing-price span {
  font-size: var(--fs-h2);
}

.pricing-price--custom {
  flex-direction: column;
  align-items: flex-start;
}

.pricing-price--custom small {
  margin-top: 0;

  color: var(--color-muted);

  font-size: var(--fs-sm);

  text-transform: uppercase;
}

.pricing-description {
  font-size: var(--fs-sm);
  color: var(--color-body);
}

/* ========================================= */
/* BODY */
/* ========================================= */

.pricing-body {
  display: flex;
  flex-direction: column;

  gap: var(--space-32);

  flex: 1;
}

.pricing-value h4,
.pricing-features h4 {
  margin-bottom: var(--space-16);

  font-size: var(--fs-md);
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.pricing-footer {
  margin-top: var(--space-32);
}

/* ========================================= */
/* INCLUDED */
/* ========================================= */

.pricing-included {
  margin-top: var(--space-64);

  padding: var(--space-32);

  background-color: var(--color-gray-50);

  border-radius: var(--radius-xl);
}

.pricing-included h3 {
  margin-bottom: var(--space-24);

  text-align: center;
}

/* ========================================= */
/* RENEWAL */
/* ========================================= */

.pricing-renewal {
  margin-top: var(--space-32);

  padding: var(--space-32);

  background-color: var(--color-white);

  border: var(--border-width) var(--border-style) var(--color-border);
  border-radius: var(--radius-xl);
}

.pricing-renewal h3 {
  margin-bottom: var(--space-24);
}

.renewal-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);

  margin-bottom: var(--space-24);
}

.renewal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: var(--space-16);

  border-bottom: var(--border-width) var(--border-style) var(--color-border);
}

.renewal-item:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.renewal-note {
  color: var(--color-muted);

  font-size: var(--fs-xs);
}

/* ========================================= */
/* FAQ */
/* ========================================= */

.faq .accordion {
  max-width: 80rem;
  margin: 0 auto;
}

.faq .accordion-content p {
  color: var(--color-body);
}

.faq .cta-box {
  max-width: 80rem;
  margin-inline: auto;
}

/* ========================================= */
/* ARTICLE */
/* ========================================= */

.article-card {
  padding: 0;
}

.article-card .card-body {
  padding: var(--space-24);
}

.article-card .card-footer {
  padding: 0 var(--space-24) var(--space-24);
}

.article-image {
  display: block;

  width: 100%;
  aspect-ratio: 16 / 10;

  object-fit: cover;
}

/* ========================================= */
/* CTA */
/* ========================================= */

.cta-box {
  padding: var(--space-64);

  text-align: center;

  color: var(--color-white);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );

  border-radius: var(--radius-xl);
}

.pricing-cta,
.faq-cta {
  margin-top: var(--space-64);
}

.cta-box .badge {
  margin-bottom: var(--space-16);
}

.cta-box h2,
.cta-box h3,
.cta-box .section-description {
  color: inherit;
}

.cta-box p {
  max-width: 60rem;

  margin: 0 auto var(--space-32);

  color: inherit;
}

.cta-box .button-group {
  justify-content: center;
}

.cta-box .feature-list {
  justify-content: center;

  margin-top: var(--space-24);
}

.cta-box .feature-item ion-icon {
  color: rgb(255 255 255 / 90%);
}

/* ========================================= */
/* DOCUMENT */
/* ========================================= */

.document-date {
  margin-top: var(--space-16);

  color: var(--color-muted);
  font-size: var(--fs-sm);
}

.document-content {
  max-width: 72rem;
  margin-inline: auto;
}

.document-content section:not(:last-child) {
  margin-bottom: var(--space-48);
}

.document-content h2 {
  margin-bottom: var(--space-16);
}

.document-content p:last-child {
  margin-bottom: 0;
}

/* Contact */

.document-contact {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: var(--space-12) var(--space-24);

  margin-top: var(--space-24);
}

.document-contact dt {
  font-weight: 600;
  color: var(--color-heading);
}

.document-contact dd {
  margin: 0;
  color: var(--color-body);
}

.document-contact a {
  color: var(--color-link);
  text-decoration: none;
}

.document-contact a:hover {
  text-decoration: underline;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

.footer {
  padding: var(--space-80) 0;

  background: var(--color-heading);
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-48);

  padding-bottom: var(--space-48);

  border-bottom: var(--border-width)
    var(--border-style)
    rgb(255 255 255 / 10%);
}

.footer-brand .nav-brand {
  display: inline-block;

  margin-bottom: var(--space-24);

  color: var(--color-white);
}

.footer-brand .nav-brand span {
  color: var(--color-primary-light);
}

.footer-brand p {
  max-width: 34rem;

  color: rgb(255 255 255 / 75%);
}

.footer-brand p:last-of-type {
  margin-bottom: var(--space-24);
}

.footer-group:not(:last-child) {
  margin-bottom: var(--space-32);
}

.footer .footer-links a,
.footer .social-list a,
.footer .footer-bottom-links a {
  color: rgb(255 255 255 / 75%);
}

.footer .footer-links a:hover,
.footer .social-list a:hover,
.footer .footer-bottom-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: var(--space-24);

  padding-top: var(--space-32);

  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-24);

  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  color: rgb(255 255 255 / 60%);
}
