/* ==========================================
   VPS PRICING PAGE - MISA AMIS
   Optimized & Reindexed CSS Styles
   ========================================== */

/* ==========================================
   CSS VARIABLES - COLOR PALETTE
   ========================================== */
:root {
    /* Primary Colors */
    --primary-blue: #0065FF;
    --orange-accent: #FF821E;
    --red-hot: #FF3939;
    
    /* Text Colors */
    --text-dark: #102E66;
    --text-secondary: #4B4B4B;
    --text-light: #686565;
    --text-black: #000000;
    
    /* Background & Border Colors */
    --background-white: #FFFFFF;
    --border-gray: #959595;
    --border-light: #E2E2E2;
    --checkmark-blue: #3F4FD7;
    
    /* Shadow Effects */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* ==========================================
   GLOBAL STYLES & RESET
   ========================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: GoogleSans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    color: var(--text-black);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-white);
}

/* Support for variable fonts */
@supports (font-variation-settings: normal) {
    body {
        font-family: GoogleSans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */
.text-medium {
    font-family: 'GoogleSans Medium';
}

.text-bold {
    font-family: 'GoogleSans Bold';
}

/* ==========================================
   LAYOUT CONTAINERS
   ========================================== */
.container {
    max-width: 1200px;
}

.pricingContainer {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.pricingHeader {
    padding: 0 0 42px;
    text-align: center;
    background-color: var(--background-white);
}

.mainTitle {
    color: var(--text-dark);
    line-height: 1.37;
    max-width: 1000px;
    font-family: 'GoogleSans Bold';
    margin-bottom: 15px;
    font-size: 35px;
}

.subTitle {
    font-size: 21px;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* color: #686565; */
    margin-bottom: 21px;
}

/* ==========================================
   PRICING SELECTOR SECTION
   ========================================== */

.title-list-f {
    font-family: 'GoogleSans Bold';
    margin-left: 20px;
    margin-bottom: 6px;
}
.pricingSelector {
    background-color: var(--background-white);
}

.selectorLabel {
    font-size: 16px;
    display: block;
    font-size: 30px;
    color: #102E66;
}

.selectorWrapper {
    position: relative;
    display: inline-block;
    /* margin: 0 auto; */
}

.userCountDropdown {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--background-white);
    border: 1px solid var(--primary-blue);
    border-radius: 4px;
    padding: 8px 40px 8px 15px;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    min-width: 153px;
    height: 38px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.userCountDropdown:hover {
    border-color: var(--orange-accent);
    box-shadow: 0 2px 8px var(--shadow-light);
}

.userCountDropdown:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 101, 255, 0.1);
}

.userCountDropdown.error {
    border-color: var(--red-hot);
    box-shadow: 0 0 0 3px rgba(255, 57, 57, 0.1);
}

.dropdownArrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    font-size: 12px;
}

/* ==========================================
   PRICING CARDS SECTION
   ========================================== */
.pricingCards {
    padding: 40px 0;
    background-color: var(--background-white);
}

/* ==========================================
   PRICING CARD BASE STYLES
   ========================================== */
.pricingCard {
    border: 1px solid var(--border-gray);
    border-radius: 17px;
    background-color: var(--background-white);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: auto;
    min-height: 400px;
    animation: fadeInUp 0.6s ease-out;
}

.pricingCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium); 
}

.pricingCard:nth-child(2) {
    animation-delay: 0.2s;
}

.pricingCard.highlighted {
    border-color: var(--orange-accent);
    box-shadow: 0 0 20px rgba(255, 130, 30, 0.3);
    transform: scale(1.02);
}

/* Standard Card */
.standardCard {
    border-color: var(--border-gray);
}

/* Professional Card */
.professionalCard {
    border-color: var(--border-gray);
    position: relative;
}
.pricing-vps {
    padding: 60px 0;
}
@media screen and (min-width: 980px){
    .standardCard {
        margin-top: 20px;
    }
}

@media screen and (max-width: 979px){
    .pricing-vps {
        padding: 40px 0;
    }
}
@media screen and (max-width: 767px){
    .pricing-vps {
        padding: 30px 0;
    }
}
/* ==========================================
   RECOMMENDED BADGE
   ========================================== */
.recommendedBadge {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--orange-accent), #FF9500);
    color: var(--background-white);
    padding: 8px 20px;
    border-radius: 17px 17px 0 0;
    text-align: center;
    font-family: 'GoogleSans Medium';
    font-size: 14px;
    z-index: 2;
}

.starIcon {
    font-size: 16px;
    margin-right: 5px;
}

.badgeText {
    font-family: 'GoogleSans Medium';
}

/* ==========================================
   CARD HEADER
   ========================================== */
.cardHeader {
    padding: 30px 30px 0;
    text-align: center;
}

.professionalCard .cardHeader {
    padding-top: 50px;
}

.planName {
    font-size: 24px;
    font-family: 'GoogleSans Bold';
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   HOT BADGE
   ========================================== */
.hotBadge {
    background-color: var(--red-hot);
    color: var(--background-white);
    font-size: 10px;
    font-family: 'GoogleSans Bold';
    padding: 2px 6px;
    border-radius: 8px;
    margin-left: 8px;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

/* ==========================================
   CARD BODY
   ========================================== */
.cardBody {
    padding: 20px 30px;
}

/* Price Section */
.priceSection {
    text-align: center;
    margin-bottom: 10px;
}

.priceAmount {
    font-size: 46px;
    font-family: 'GoogleSans Bold';
    color: var(--primary-blue);
    display: block;
    transition: var(--transition-fast);
    font-family: "GoogleSans Bold", Arial, sans-serif;
}

.priceAmount.updating {
    opacity: 0.6;
    transform: scale(0.95);
}

.priceUnit {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    display: block;
    margin-top: 5px;
}

/* Total Price */
.totalPrice {
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--text-secondary);
}

.totalText, .totalUnit {
    font-weight: 400;
}

.totalAmount {
    font-family: 'GoogleSans Bold';
    color: var(--text-dark);
    transition: var(--transition-fast);
}

/* Plan Features */
.planFeatures {
    margin-bottom: 20px;
}

.planFeatures .featureItem {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 8px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Contact Message for 200+ Users */
.contact-message {
    text-align: center;
    margin: 20px 0;
    font-size: 18px;
    font-family: 'GoogleSans Medium';
    color: var(--primary-blue);
    padding: 15px;
    background-color: rgba(0, 101, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 101, 255, 0.2);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.4s ease-out;
}

.contact-message:hover {
    background-color: rgba(0, 101, 255, 0.08);
    transform: translateY(-1px);
}

/* ==========================================
   CARD FOOTER
   ========================================== */
.cardFooter {
    padding: 0 30px 30px;
    text-align: center;
}

/* CTA Buttons */
.ctaButton {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'GoogleSans Medium';
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 200px;
}

.standardButton {
    background-color: var(--primary-blue);
    color: var(--background-white);
}

.standardButton:hover {
    background-color: #0052CC;
    color: var(--background-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 101, 255, 0.3);
}

.professionalButton {
    background-color: var(--orange-accent);
    color: var(--background-white);
}

.professionalButton:hover {
    background-color: #E6741A;
    color: var(--background-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 130, 30, 0.3);
}

/* ==========================================
   FEATURES LIST
   ========================================== */
.featuresList {
    padding: 20px 34px 0;
}

.featureGroup {
    margin-bottom: 25px;
}

.featureContent h4 {
    font-size: 16px;
    font-family: 'GoogleSans Bold';
    color: var(--text-dark);
    margin: 0 0 10px 0;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 5px;
}

.featureContent p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 8px 0;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}
.price-select {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.col-md-24.price-select {}
/* Checkmarks */
.checkmark {
    color: var(--checkmark-blue);
    font-family: 'GoogleSans Bold';
    font-size: 14px;
    margin-right: 8px;
    flex-shrink: 0;
    height: 20px;
    /* background-color: rgba(63, 79, 215, 0.1); */
}

/* Feature Item */
.feature-item {
    margin-bottom: 6px;
    display: flex;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.ctaSection {
    /* padding: 40px 0; */
    text-align: center;
    background-color: var(--background-white);
}

.largeScaleText {
    font-size: 16px;
    /* font-family: 'GoogleSans Medium'; */
    /* color: var(--text-dark); */
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.downloadButton {
    background-color: var(--primary-blue);
    color: var(--background-white);
    padding: 8px 40px;
    border-radius: 25px;
    font-size: 20px;
    font-family: 'GoogleSans';
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    transition: var(--transition-smooth);
}

.downloadButton:hover, .downloadButton:focus, .downloadButton:visited, .downloadButton:active {
    background-color: var(--primary-blue);
    color: var(--background-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 130, 30, 0.3);
}

.downloadIcon {
    display: inline-flex;
    align-items: center;
}

.downloadIcon img {
    width: 16px;
    height: 16px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ==========================================
   RESPONSIVE DESIGN - TABLET
   ========================================== */
@media (max-width: 1199px) and (min-width: 768px) {
    .container {
        max-width: 100%;
    }

    .pricingContainer {
        max-width: 650px;
    }

    .mainTitle {
        font-size: 28px;
    }

    .selectorLabel {
        font-size: 26px;
    }

    .priceAmount {
        font-size: 32px;
    }

    .pricingCard {
        margin-bottom: 25px;
    }

    .featureGroup {
        margin-bottom: 20px;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE
   ========================================== */
@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .pricingContainer {
        max-width: 100%;
        padding: 0;
    }

    .pricingHeader {
        padding: 0 0 15px;
    }

    .mainTitle {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .subTitle {
        font-size: 16px;
        line-height: 1.4;
    }

    .pricingSelector {
        padding: 20px 0;
    }

    .selectorLabel {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .userCountDropdown {
        min-width: 140px;
        font-size: 14px;
    }

    .pricingCards {
        padding: 30px 0;
    }

    .pricingCard {
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .cardHeader, .cardBody, .cardFooter {
        padding-left: 20px;
        padding-right: 20px;
    }

    .professionalCard .cardHeader {
        padding-top: 40px;
    }

    .priceAmount {
        font-size: 28px;
    }

    .totalPrice {
        font-size: 14px;
    }

    .ctaButton {
        padding: 10px 25px;
        font-size: 14px;
        min-width: 180px;
    }

    .featuresList {
        padding: 15px 20px 0;
    }

    .featureGroup {
        margin-bottom: 20px;
    }

    .featureContent h4 {
        font-size: 15px;
    }

    .featureContent p {
        font-size: 13px;
    }

    /* .ctaSection {
        padding: 30px 0;
    } */

    .largeScaleText {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .downloadButton {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .contact-message {
        font-size: 16px;
        padding: 12px;
        margin: 15px 0;
    }
}

/* ==========================================
   RESPONSIVE DESIGN - SMALL MOBILE
   ========================================== */
@media (max-width: 479px) {
    .mainTitle {
        font-size: 20px;
    }

    .selectorLabel {
        font-size: 18px;
    }

    .priceAmount {
        font-size: 24px;
    }

    .recommendedBadge {
        padding: 6px 15px;
        font-size: 12px;
    }

    .starIcon {
        font-size: 14px;
    }

    .badgeText {
        font-size: 12px;
    }
    
    .contact-message {
        font-size: 14px;
        padding: 10px;
        margin: 12px 0;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .pricingCard {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid var(--border-gray);
    }

    .ctaButton {
        display: none;
    }

    .recommendedBadge {
        background: var(--text-dark) !important;
        color: var(--background-white) !important;
    }
} 
/* section 2 */
section.banner-register {
    background: linear-gradient(269deg, #109FFF 11.26%, #0065FF 93.77%);
    padding: 38px 0;
    margin-top: 44px;
}

.title-banner-register {
    font-size: 35px;
    text-align: center;
    font-family: 'GoogleSans Bold';
    color: #fff;
}
a.btn-register-price {
    padding: 8px 60px;
    border-radius: 32px;
    background: linear-gradient(90deg, #FF8901 0%, #FF4F00 100%);
    color: #fff !important;
    font-family: 'GoogleSans Bold';
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 30px;
}
/* end section 2 */

/* section 3 */
  .section-3 {
    background: #f6f7f8;
    width: 100%;
    font-family: "Google Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
  }

  .amis-hero__wrap {
    margin: 0 auto;
    padding: 48px 0;
    display: grid;
    gap: 28px;
  }

  .amis-hero__top {
    display: grid;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .amis-hero__title {
      font-size: 35px;
      font-family: 'GoogleSans Bold';
      line-height: 1.2;
  }
  
  .amis-hero__subtitle {
      font-size: 30px;
      font-family: 'GoogleSans Medium';
      line-height: 1.2;
      color: #0065ff;
      letter-spacing: 0.2px;
  }

  .amis-hero__desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #111;
  }

  .amis-hero__main {
    display: grid;
    grid-template-columns: minmax(280px, 652px) 1fr;
    gap: 40px;
    align-items: center;
  }

  .amis-hero__media {
    display: grid;
    cursor: pointer;
  }

  .amis-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }

  .amis-hero__content {
    display: grid;
    gap: 16px;
  }

  .amis-hero__block {
    display: grid;
    gap: 8px;
  }

  .amis-hero__block-title {
      font-size: 25px;
      font-family: 'GoogleSans Bold';
      line-height: 1.2;
      color: #0065ff;
  }

  .amis-hero__block-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #111;
    white-space: pre-line;
  }

  .amis-hero__cta {
    display: grid;
    grid-template-columns: 220px 242px;
    gap: 16px;
    justify-content: end;
    align-items: center;
    margin-top: 10px;
  }

  .amis-hero__cta-link {
      display: grid;
      place-items: center;
      height: 48px;
      border-radius: 999px;
      color: #fff !important;
      text-decoration: none;
      font-size: 20px;
      font-family: 'GoogleSans Medium';
      line-height: 1;
      padding: 0 18px;
      white-space: nowrap;
  }

  .amis-hero__cta-link.is-primary {
    background: #0065ff;
  }

  .amis-hero__cta-link.is-secondary {
    background: #ff5800;
  }

  .amis-hero__note {
    display: grid;
    justify-content: end;
    margin-top: -4px;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    text-align: right;
  }

  @media (max-width: 979px) {
    .amis-hero__wrap {
      padding: 32px 16px 40px;
    }

    .amis-hero__title {
      font-size: 26px;
    }

    .amis-hero__subtitle {
      font-size: 20px;
    }

    .amis-hero__desc {
      font-size: 16px;
    }

    .amis-hero__main {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .amis-hero__cta {
      grid-template-columns: 1fr;
      justify-content: stretch;
    }

    .amis-hero__note {
      justify-content: start;
      text-align: left;
      margin-top: 6px;
    }

    .amis-hero__block-title {
      font-size: 20px;
    }

    .amis-hero__block-text {
      font-size: 16px;
    }
  }
/* end section 3 */
/* section 4 */
.amis-industry {
    width: 100%;
    font-family: "Google Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
  }

  .amis-industry__wrap {
    margin: 0 auto;
    justify-items: center;
  }

  .amis-industry__title {
      font-size: 35px;
      font-family: 'GoogleSans Bold';
      line-height: 1.2;
      margin-top: 0;
      margin-bottom: 46px;
  }

  .amis-industry__media {
    display: grid;
  }

  .amis-industry__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
  }

  .amis-industry__footer {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding-top: 8px;
  }

  .amis-industry__note {
      font-size: 20px;
      font-family: 'GoogleSans Medium';
      line-height: 1.4;
      text-align: center;
  }
  
  .amis-industry__cta {
      display: grid;
      place-items: center;
      height: 48px;
      min-width: 242px;
      padding: 0 18px;
      border-radius: 999px;
      background: #ff5800;
      color: #fff !important;
      text-decoration: none;
      font-size: 20px;
      font-family: 'GoogleSans Medium';
      line-height: 1;
      white-space: nowrap;
  }

  @media (max-width: 979px) {
    .amis-industry__wrap {
      padding: 0 16px 40px;
      gap: 14px;
    }

    .amis-industry__title {
      font-size: 26px;
    }

    .amis-industry__image {
      border-radius: 12px;
    }

    .amis-industry__note {
      font-size: 16px;
    }

    .amis-industry__cta {
      width: 100%;
      min-width: 0;
      font-size: 16px;
    }
  }
/* end sectin 4 */
/* section 5 */
 .amis-inquiry {
    width: 100%;
    font-family: "Google Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111;
    background: linear-gradient(180deg, rgba(244, 250, 255, 0) 0%, #bde0ff 100%);
  }

  .amis-inquiry__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 56px;
    display: grid;
    gap: 28px;
  }

  .amis-inquiry__title {
    text-align: center;
    font-size: 35px;
    font-family: 'GoogleSans Bold';
    line-height: 1.35;
  }

  .amis-inquiry__grid {
    display: grid;
    grid-template-columns: minmax(320px, 506px) 1fr;
    gap: 44px;
    align-items: start;
  }

  .amis-inquiry__card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    padding: 10px;
    display: grid;
    /* gap: 14px; */
  }

  .amis-inquiry__card-title {
    color: #0569ff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
  }

  .amis-inquiry__card-subtitle {
    color: #4a4a4a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
  }

  .amis-inquiry__meta {
    color: #565656;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.35;
    text-align: center;
    padding-top: 4px;
  }

  .amis-inquiry__aside {
    display: grid;
    gap: 18px;
    align-items: start;
  }

  .amis-inquiry__qa-title {
    font-size: 25px;
    line-height: 1.35;
    color: #111;
    font-family: 'GoogleSans Bold';
  }

  .amis-inquiry__qa-list {
    display: grid;
    gap: 12px;
  }

  .amis-inquiry__qa-item {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    gap: 12px;
    align-items: center;
    position: relative;
    width: fit-content;
  }

  .amis-inquiry__qa-icon {
    width: 14px;
    height: 14px;
    /* margin-top: 6px; */
    display: block;
  }

  .amis-inquiry__qa-text {
    font-size: 20px;
    /* font-weight: 400; */
    line-height: 1.75;
    color: #111;
  }

  .amis-inquiry__badge {
    align-self: start;
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 22px;
    padding: 0 8px;
    background: #ff3939;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    margin-top: 6px;
  }

  .amis-inquiry__media {
    display: grid;
    gap: 16px;
    align-items: end;
    position: relative;
  }

  .amis-inquiry__media-main {
    width: 100%;
    max-width: 849px;
    height: auto;
    display: block;
    border-radius: 14px;
    position: absolute;
    top: 0;
    left: -95px;
  }

  .amis-inquiry__media-float {
    width: 181px;
    height: auto;
    display: block;
    border-radius: 14px;
    justify-self: end;
  }

  @media (max-width: 979px) {
      .amis-inquiry__media-main{
          position: unset;
      }
    .amis-inquiry__wrap {
      padding: 28px 16px 40px;
      gap: 18px;
    }

    .amis-inquiry__title {
      font-size: 26px;
    }

    .amis-inquiry__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .amis-inquiry__card-title {
      font-size: 22px;
    }

    .amis-inquiry__card-subtitle {
      font-size: 16px;
    }

    .amis-inquiry__meta {
      font-size: 16px;
    }

    .amis-inquiry__qa-title {
      font-size: 18px;
    }

    .amis-inquiry__qa-text {
      font-size: 16px;
      line-height: 1.6;
    }

    .amis-inquiry__media-float {
      width: 140px;
    }
  }
/* end section 5 */

/* section 6  */

  .panel-group {
    margin-bottom: 0;
  }
  
  .cdw-question-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #004aeb;
    padding-bottom: 20px;
  }
  
  .panel-group .panel {
    border-radius: 0;
  }
  
  .panel {
    border: 0;
    border-bottom: 1px solid #474747;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
  }
  
  .panel:last-child {
    border-bottom: 0;
  }
  
  .panel-heading {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 700;
  }
  
  .panel-answer {
    padding-bottom: 10px;
  }
  
  .cdw-question .panel-default > .panel-heading.collapsed {
    background: url(/sites/amis/images/pages/campaign-digital-workplace/ic-down.svg)
      no-repeat right 15px top 25px;
    background-size: 15px;
  }
  
  .cdw-question .panel-default > .panel-heading {
    border: 0;
    padding: 20px 35px 20px 0;
    background-color: #fff;
    cursor: pointer;
    background: url(/sites/amis/images/pages/campaign-digital-workplace/ic-up.svg)
      no-repeat right 15px top 25px;
    background-size: 15px;
  }
  
  @media (max-width: 467px) {
    .cdw-question-title {
      font-size: 24px;
    }
  
    .panel-heading {
      font-size: 16px;
    }
  
    .cdw-question .panel-default > .panel-heading {
      padding: 15px 35px 15px 0;
    }
  }
  .cdw-question {
    padding-top: 60px;
}

/* end section 6  */


/* Controls Row */
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Trial Section */
.trial-section {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.trial-label {
    font-weight: 500;
    color: #333;
    font-size: 18px;
    font-style: italic;
}

.trial-button-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: relative;
}

.trial-arrow {
    display: block;
    opacity: 0.8;
    margin-right: 113px;
    position: absolute;
}

.trial-button-container:hover .trial-arrow {
    opacity: 1;
}

.trial-cta-btn {
    background: #6644F0;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(124, 77, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.trial-cta-btn:hover {
    color: white;
    text-decoration: none;
}

.trial-cta-btn:hover {
    box-shadow: 0 4px 12px rgba(124, 77, 255, 0.4);
}

/* Period Toggle */
.period-toggle {
    display: flex;
    align-items: center;
}

.toggle-switch {
    display: flex;
    background: #fff;
    padding: 2px;
    position: relative;
    border-radius: 8px;
    border: 1.5px solid #0065FF;
}

.period-btn {
    padding: 8px 20px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 2;
    background: #fff;
}

.period-btn.active {
    background: #0065FF;
    color: white;
    border-radius: 6px;
}

.period-btn:hover:not(.active) {
    color: #0052CC;
}

/* Pricing Configuration Responsive */
@media (max-width: 768px) {
    .config-container {
        gap: 25px;
    }
    
    .sales-row {
        justify-content: center;
    }
    
    .sales-selector {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .sales-question {
        white-space: normal;
    }
    
    .controls-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .trial-section {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .pricing-config {
        padding: 30px 0;
    }
}
/*#endregion Pricing Configuration Section */