.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 5px 16px; /* consistent padding */
  box-sizing: border-box;
}

.banner-divider {
  width: 100%;
  height: 1px;
  background-color: #bebcbc;
  margin: 0;
}

.banner-left,
.banner-center,
.banner-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-right {
  gap: 16px;
}

.user-icon {
  width: 25px;
  height: 25px;
}

.app-icon {
  width: 25px;
  height: 25px;
}

.app-name {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
}

.link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 32px;
  }
  
  .title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937; /* slate-800 */
    margin-bottom: 8px;
  }
  
  .subtitle {
    font-size: 1.125rem;
    color: #6b7280; /* slate-500 */
    max-width: 600px;
    margin: 0 auto;
  }

  .Hero {
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 40px); /* responsive sizing */
    line-height: 1;
    padding: 20px;
    letter-spacing: -0.04em;
    text-align: center;
    margin: 0 auto;
    display: block;
    color: #272727;
    white-space: nowrap;         /* 💡 force one line */
    overflow: hidden;            /* 💡 prevent overflow */
    text-overflow: ellipsis;     /* optional: shows "..." if text is too long */
  }


  .SubHero{
    font-weight: 100;
  font-size: clamp(1.0rem, 5vw, 35px); /* responsive sizing */
  line-height: 1;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  display: block;
  color: #272727;
  white-space: nowrap;        
  overflow: hidden;          
  text-overflow: ellipsis;    
  }
  
  
.appIconCenter{
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  max-width: 100%;       /* Prevent overflow */
  overflow-x: hidden;     /* Disable horizontal scroll */
}


.screen-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  background-color: #f9f9f9;
  box-sizing: border-box;
  width: 100%;
}


.screen-card h2 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #1f2937;
}

.screen-card p {
  color: #374151;
  font-size: 0.95rem;
}

  .business-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  width: 90%;
  margin: auto;
}

.business-card ol {
  padding-left: 20px;
  margin: 0;
}

.business-card li {
  margin-bottom: 16px;
}

.business-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 8px;
}

.business-card ul li {
  margin-bottom: 4px;
}

.faq-item{
padding: 0px;
gap: 26px;
width: 100%;
padding-bottom: 20px;
}.btn-primary {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
  }

  button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

  .btn-primary:hover {
    background-color: #1d4ed8;
  }
  
  .btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .btn-secondary:hover {
    background-color: #e5e7eb;
  }


  .btn-delete {
    background-color: #dc2626;         /* Tailwind red-600 */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
  }
  
  .btn-delete:hover {
    background-color: #b91c1c;         /* Tailwind red-700 */
  }
  
  .btn-delete:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  
.dashboardHeader {
    width: 100%;
    margin-bottom: 10px;
    display: flex;              /* Enable flex layout */
    align-items: center;        /* Vertically center items */
    justify-content: space-between; /* Optional: space out children */
    gap: 200px;                  /* Optional: spacing between children */
  }
  

.dashboardTitle{
    width: 100%;
    margin-bottom: 32px;
}

.app-button-full {
  padding: 10px 10px;
  width: 100%;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.horizontal-separator {
  height: 1px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* light grey */
  margin: 16px 0; /* spacing above and below */
}

.cardContainer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 📢 changed 300px → 320px */
  gap: 24px;
  padding: 16px;
  box-sizing: border-box;
}



.projectCard {

  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 16px;
  background-color: #ffffff;
  box-shadow:
    0px 0px 2px rgba(145, 158, 171, 0.2),
    0px 12px 24px -4px rgba(145, 158, 171, 0.12);
  border-radius: 16px;
}

.projectHeader{
  display: flex;              /* Enable flex layout */
  align-items: center;        /* Vertically center items */
  justify-content: space-between; /* Optional: space out children */
  padding: 10px;
}

.projectName{
  color: #272727;
}

.projectDescription{
  
}

.appsTitle{
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  /* identical to box height, or 24px */
  text-align: center;
  letter-spacing: -0.04em;
  color: #272727;
  /* Inside auto layout */
  flex: none;
  order: 0;
  flex-grow: 0;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .upgradeDescription{
font-style: normal;
font-weight: 400;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #737373;
  }

  .button-stack {
    display: flex;
    flex-direction: column;
    gap: 12px; /* spacing between buttons */
    width: 100%;
    max-width: 300px; /* optional: to limit button width */
    margin: 0 auto;   /* optional: center it horizontally */
  }
  
  .button-stack button {
    width: 100%;
  }
  

  .modal {
    background: white;
    padding: 12px;
    border-radius: 12px;
    max-width: 400px;
    width: 95%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .modal input {
    width: 95%;
    margin: 8px 0;
    padding: 10px;
    font-size: 1rem;
  }
  
  .status-text {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #4b5563;
  }
  .modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  
  .modal {
    background: white;
    padding: 12px;
    border-radius: 12px;
    max-width: 400px;
    width: 95%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  
  .modal input {
    width: 95%;
    margin: 8px 0;
    padding: 10px;
    font-size: 1rem;
  }
  
  .status-text {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #4b5563;
  }

  .modelHeader{
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #272727;
    flex: none;
    order: 1;
    flex-grow: 0;
  }

  .modelSub{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    text-align: center;
    color: #737373;
  }

  .linkText{
    color: #737373;
    padding: 10px;
    margin: 10px;
  }

  .dataInput {
    border: 1px solid #ccc; /* Optional: for a visible border */
    border-radius: 8px;     /* ✅ This makes the corners rounded */
    padding: 10px;          /* Optional: adds space inside the input */
    font-size: 1rem;        /* Optional: improves text readability */
    outline: none;          /* Optional: remove default blue outline */
  }
  
   /*  FEATURES STUFF  */

 .about{
    /* Frame 1000007901 */
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    width: 326px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid #D6D6D6;
    border-radius: 15px;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  .contact-email {
    background-color: #f5f5f5;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    max-width: 400px;
    margin: 40px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .aboutMajor{
    /* Frame 1000007901 */
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    width: 95%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid #D6D6D6;
    border-radius: 15px;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  .about-wrapper {
    position: relative;
    width: 100%;
    padding: 40px 24px;
    overflow: hidden;
    z-index: 0;
  }

 .about-text {
  font-size: 16px;
  line-height: 1.4;
  color: #272727;
}

.about-title {
  font-size: 16px;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #272727;
}


  .about-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* spacing between cards */
    justify-content: center; /* center cards horizontally */
    padding: 10px;
  }

.dashboardHeader {
    width: 100%;
    margin-bottom: 10px;
    display: flex;              /* Enable flex layout */
    align-items: center;        /* Vertically center items */
    justify-content: space-between; /* Optional: space out children */
    gap: 200px;                  /* Optional: spacing between children */
  }
  

.dashboardTitle{
    width: 100%;
    margin-bottom: 32px;
}


.projectCard{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 24px 16px;
gap: 24px;
width: 464px;
background: #FFFFFF;
/* shadow/card */
box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2), 0px 12px 24px -4px rgba(145, 158, 171, 0.12);
border-radius: 16px;
}

.projectHeader{
  display: flex;              /* Enable flex layout */
  align-items: center;        /* Vertically center items */
  justify-content: space-between; /* Optional: space out children */
  padding: 10px;
}

.projectName{

}

.projectDescription{
  
}

.smallButton{
  padding: 10px 10px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin: 0 auto;
  padding: 10px;
  margin: 10px;
}

.titleInline {
  display: inline; /* or inline-block */
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  color: #333;
}


.hidden {
  display: none !important;
}

    .build-status {
      font-size: 1rem;
      color: #555;
      align-self: center;    /* âœ… Align text vertically centered next to phone */
    }

        .hidden {
            display: none !important;
        }

        .buildingContainerC {
          display: flex;
          flex-direction: column;
          align-items: center;      /* Center horizontally */
          text-align: center;       /* Center the text inside the <h2> */
          padding: 20px;
        }
        
        .actionImage {
          max-width: 200px;
          height: auto;
          margin-bottom: 20px;
        }
        

        .shimmer {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(
            90deg,
            #f0f0f0 25%,
            #e0e0e0 50%,
            #f0f0f0 75%
          );
          background-size: 200% 100%;
          animation: shimmer 1.5s infinite;
          border-radius: 16px;
          z-index: 1;
    }

.screens-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  justify-content: center;
}


.app-button-large {
  padding: 10px 10px;
  width: 50%;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.app-button-full {
  padding: 10px 10px;
  width: 100%;
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.screen-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  width: 100%; /* ðŸ”‘ this makes 50% inside work */
  max-width: 400px; /* Optional: match phone width */
}

.screen-actions button:not(.app-button-large):hover {
  background-color: #0056b3;
}

 /* start phone rendering */

 .screenPreviewContainer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* allow content to shrink */
  gap: 1rem;
  padding: 1rem;
}

.screenPreviewContainer > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* for text inside */
}


@media (min-width: 900px) {
  .screenPreviewContainer {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on large screens */
  }
}

.phone-frame {
  width: 100%;
  max-width: 100%;              /* let it shrink if needed */
  aspect-ratio: 9 / 16;
  border: 3px solid #ccc;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}


.screen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 315px;            /* was 420px → 315px (75%) */
  margin: 1rem auto;
}

.screen-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* stop phone rendering */

.screen-name {
  font-size: 16px;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;    /* Added */
  line-height: 1.3;
  max-width: 100%;           /* Important: prevents text overflow */
  color: #000;
}

  @keyframes spin {
    to { transform: rotate(360deg); }
  }



  h1 {
    color: #000000;
    font-size: 2rem; /* about 32px */
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
  }
  
  h2 {
    color: #000000;
    font-size: 1.5rem; /* about 24px */
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  
  p {
    color: #000000;
    font-size: 1rem; /* about 16px */
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 1rem;
    text-align: center;
  }


  .appAboutContainer {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* allow content to shrink */
    gap: 1rem;
    padding: 1rem;
  }

  .card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12); /* STRONGER shadow */
    border: 1px solid rgba(0, 0, 0, 0.08); /* subtle border */
  }

  li {
    list-style: none;
    padding: 0;
    margin: 0;
  }


.inlineTitle{
  color: #121212;
  font-weight: bold;
}

.centeredRow {
  text-align: center;
  width: 100%;
  padding: 10px;
}

.confirm-delete{
  display: flex;
  gap: 12px;
}

.cardWrap {
 display: inline-block;
 padding: 1rem 1.5rem;
 background-color: #ffffff;
 border-radius: 12px;
 box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
 border: 1px solid rgba(0, 0, 0, 0.05);
}
.animated-gradient {
  background: linear-gradient(
    266.91deg,
    rgba(107, 130, 153, 0.2) 0.53%,
    rgba(173, 104, 132, 0.2) 49.91%,
    rgba(144, 153, 223, 0.2) 95.85%
  );
  background-size: 200% 200%;
  animation: gradientShift 1s ease-in-out infinite;
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.animated-text {
  color: rgb(116, 111, 120);
  font-size: 1.5rem;     /* Bigger text */
  font-weight: 700;      /* Bold */
  text-align: center;    /* Optional centering */
  line-height: 1.4;
}


@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.appAboutContainer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Stack cards vertically on small screens */
@media (max-width: 768px) {
  .appAboutContainer {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 100% !important;
    max-width: 90%;
  }
}

.progressWrapper {
  width: 100%;
  height: 20px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 255, 0, 0.05); /* debug visibility */
}
.progressBarBackground {
  width: 100%; /* ✅ Always takes full container width */
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(
    266.91deg,
    rgba(107, 130, 153, 0.2) 0.53%,
    rgba(173, 104, 132, 0.2) 49.91%,
    rgba(144, 153, 223, 0.2) 95.85%
  );
}

.progressBarForeground {
  height: 100%;
  background: linear-gradient(
    266.91deg,
    #6b8299 0.53%,
    #ad6884 49.91%,
    #9099df 95.85%
  );
  transition: width 0.4s ease;
} */
.cardGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
  }

.card{
    flex: 1 1 calc(50% - 8px); /* 50% minus half the gap */
    box-sizing: border-box;
    padding: 16px 16px;
    gap: 16px;
    background: #FFFFFF;
    /* shadow/card */
    box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2), 0px 12px 24px -4px rgba(145, 158, 171, 0.12);
    border-radius: 16px;
}

.cardBottom{
  flex: 1 1 calc(100%); /* 50% minus half the gap */
  box-sizing: border-box;
  padding: 16px 16px;
  gap: 16px;
  background: #FFFFFF;
  /* shadow/card */
  box-shadow: 0px 0px 2px rgba(145, 158, 171, 0.2), 0px 12px 24px -4px rgba(145, 158, 171, 0.12);
  border-radius: 16px;
}

.cancelPlan{
    box-sizing: border-box;
    padding: 12px 12px;
    justify-content: center;
    align-items: center;
    width: 108px;
    border: 1px solid #FF5630;
    color: #FF5630;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
    border-radius: 12px;
}

.titleSmall {
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #272727;
    text-align: center;
  }
  
  .seperator {
    width: 90%;
    border: none;
    border-top: 1px solid #EBEBEB;
    margin: 16px auto;
  }
  
.accountPill{
    display: inline-flex;
    justify-content: center;
    padding: 8px 8px;
    gap: 4px;
    margin: 0 auto;
    width: 46px;
    background: #FFF7E6;
    border-radius: 20px;
}

.statusRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
  }

  .buyEditsRow {
    display: flex;
    align-items: center;       /* vertically center items */
    justify-content: space-between; /* evenly space items horizontally */
    width: 100%;
    margin-bottom: 12px;
  }
  
  
  .label {
    font-weight: 600;
    color: #333;
  }
  
  .value {
    color: #444;
    text-align: right;
  }

  .titleRow {
    display: flex;
    align-items: center;  /* ✅ Vertical centering */
    gap: 12px;            /* Optional: space between image and text */
  }

  .completed{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0px 6px;
        gap: 6px;
        width: 73px;
        min-width: 24px;
        height: 24px;
        background: rgba(34, 197, 94, 0.16);
        border-radius: 6px;
        flex: none;
        order: 1;
        flex-grow: 0;
  }

  .historyRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;              /* ✅ Force full width */
    box-sizing: border-box;   /* ✅ Includes padding in width */
    padding: 12px 16px;
    border-bottom: 1px dashed #e0e0e0;
    gap: 8px;
    flex-wrap: wrap;          /* Optional: allows wrapping on small screens */
  }

  .historyColumns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;              /* ✅ Force full width */
    box-sizing: border-box;   /* ✅ Includes padding in width */
    padding: 12px 16px;
    background-color: #F4F6F8;
    border-bottom: 1px solid #e0e0e0;
    gap: 8px;
    flex-wrap: wrap;          /* Optional: allows wrapping on small screens */
  }
  
  .historyCell {
    flex: 1; /* ✅ evenly distributes the space */
    font-size: 14px;
    color: #333;
  }
  
  .productId {
    font-weight: bold;
  }
  
  .quantity,
  .price,
  .date {
    text-align: center;
  }

  .appsRemainingPill{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 4px 8px;
gap: 4px;
margin: 0 auto;
height: 24px;
background: #EBF5FA;
border-radius: 20px;
/* Inside auto layout */
flex: none;
order: 1;
flex-grow: 0;

  }

  .unlockButton{
    /* ✳️ secondary action */
    margin: 10px;
box-sizing: border-box;
color: #EBF5FA;
justify-content: center;
align-items: center;
padding: 12px;
background: linear-gradient(266.91deg, #6B8299 0.53%, #AD6884 49.91%, #9099DF 95.85%);
border-radius: 8px;
  }
/* Parent layout wrapper */
/* Layout container */
.editor-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: calc(100vh - 100px); /* adjust for header height */
  }
  
  /* Left Sidebar (Section 2) */
  .section-2 {
    width: 50%;
    padding: 20px;
    background-color: #fafafa;
    overflow-y: auto;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
  }
  
  /* Right iframe section */
  .section-1 {
    display: flex;
    flex-direction: column;  /* optional, if stacking vertically */
    align-items: stretch;     /* ✅ allow child to fill height */
    justify-content: center;
    height: 100%;
  }
  
  .right-container{
    
    display: flex;
    flex-direction: column;  /* optional, if stacking vertically */
    align-items: stretch;     /* ✅ allow child to fill height */
    justify-content: center;
    height: 100%;
    width: 100%;
  }

  .embedded-content-desktop {
    width: 95%;
    height: 95%;
    border: 2px solid black;
    border-radius: 12px;
     background-color: #f5f5f5; /* Light grey background */
}

.embedded-content-tablet {
    width: 90%;
    height: 80%;
    border: 2px solid black;
    border-radius: 12px;
     background-color: #f5f5f5; /* Light grey background */
}

.embedded-content-mobile {
  width: 300px; /* or whatever max width you want */
  aspect-ratio: 9 / 16; /* ✅ force phone shape */
  border: 2px solid black;
  border-radius: 24px;
  background-color: #f5f5f5;
  overflow: hidden;
  margin: 20px auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}


/* Blur effect for iframe */
.iframe-blur {
    filter: blur(5px); /* Apply blur */
    pointer-events: none; /* Disable interaction */
}

/* Spinner overlay */
#spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    display: none; /* Initially hidden */
}

/* Spinner animation */
.spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #17a2b8; /* Teal color */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.promptInput {
    width: 95%;
    background-color: #D6D6D6 !important;  /* ✅ force it to apply */
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 16px;
    color: #000; /* optional for readability */
    resize: vertical; /* optional UX */
  }

  /* SUBMIT BUTTONS */

  .submitButton {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    font-size: 1em;
    font-weight: 500;
    font-family: inherit;
    background-color: #2563eb;
    color: white;
    cursor: pointer;
    transition: border-color 0.25s;
  }
  .submitButton:hover {
    border-color: #646cff;
  }
  .submitButton:focus,
  .submitButton:focus-visible {
    outline: 4px auto -webkit-focus-ring-color;
  }


/* Designer Helper BUTTONS */
.designButton {
border-radius: 8px;
border: 1px solid transparent;
padding: 0.6em 1.2em;
font-size: 0.75em;
font-weight: 500;
font-family: inherit;
background-color: #0078D4;
color: white;
cursor: pointer;
transition: border-color 0.25s;
margin: 5px;
white-space: normal;      /* ✅ allow wrapping */
word-wrap: break-word;    /* ✅ wrap long words */
text-align: left;         /* optional: aligns text nicely if multiline */
}

.designButton:hover {
border-color: #646cff;
}
.designButton:focus,
.designButton:focus-visible {
outline: 4px auto -webkit-focus-ring-color;
}

/* Designer Helper BUTTONS card */
.designerButtonsCard {
background-color: #ffffff;       /* Optional: white background */
border: 1px solid #ddd;          /* Optional: subtle border */
border-radius: 12px;             /* Rounded corners */
padding: 8px;                   /* Inner spacing */
margin-top: 0px;
height: 300px;                   /* ✅ Fixed height */
overflow-y: auto;                /* ✅ Scroll vertically if content overflows */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}

.section-3{
background-color: #ffffff;       /* Optional: white background */
border: 1px solid #ddd;          /* Optional: subtle border */
border-radius: 12px;             /* Rounded corners */
padding: 8px;                   /* Inner spacing */
overflow-y: auto;                /* ✅ Scroll vertically if content overflows */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
}

.previewButtons{
    display: flex;          /* ✅ arrange children in a row */
    gap: 12px;              /* optional: adds spacing between buttons */
    flex-wrap: nowrap;      /* prevents wrapping to new lines */
    align-items: center;    /* optional: vertically center buttons */
}
.selectDevice {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 12px; /* ✅ consistent spacing */
  gap: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 8px;
  background-color: #fff; /* optional: visible bg */
  font-size: 14px;         /* size balance */
  cursor: pointer;
}

.homeButton {
  box-sizing: border-box;
  padding: 6px 12px;
  gap: 8px;
  border: 1px solid rgba(145, 158, 171, 0.32);
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  font-size: 14px;
  cursor: pointer;
  width: fit-content; /* ✅ Prevents full width */
  justify-content: center;
}

.undo-button{
  color: #000;
  background-color: rgba(145, 158, 171, 0.32);
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.25s;
}


.undo-button:disabled {
  color: rgba(0, 0, 0, 0.3); /* faded text */
  background-color: rgba(145, 158, 171, 0.15); /* lighter background */
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}

:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: only light;
  color: rgba(255, 255, 255, 0.87);
  color-scheme: light;
  background-color: #fff;
   width: 100%;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.body{
  padding: 0px;
  margin: 0px;
  width: 100%;
}

.button{
  padding: 15px 15px;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

a {
  font-weight: 500;
  color: #272727;
  text-decoration: none;
}
a:hover {
  color: #535bf2;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

.buttonMinor {
  padding: 10px 10px;
  background-color: #2563eb;
  width: 90%;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.viewDiv {
  padding-top: 100px;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically */
  background-color: transparent;
}

.centered-transparent-div {
  padding-top: 24px;
  width: 100%;
  justify-content: center;  /* center horizontally */
  align-items: center;      /* center vertically */
  background-color: transparent;
}

.description{
  display: inline-block;
  /* Discover innovative solutions created by developers using the powerful DevPro framework */
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 19px;
text-align: center;
letter-spacing: -0.04em;
color: #272727;
}

.title{
  display: inline-block;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  /* identical to box height, or 24px */
  text-align: center;
  letter-spacing: -0.04em;
  color: #272727;
  padding-bottom: 16px;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 16px; /* spacing between images */
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* optional rounding */
    object-fit: cover;
  }

  .div-rectangle {
    position: absolute;
    width: 55%;
    height: 55%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(47.67deg);
    background: linear-gradient(
      266.91deg,
      rgba(107, 130, 153, 0.3) 0.53%,
      rgba(173, 104, 132, 0.3) 49.91%,
      rgba(144, 153, 223, 0.3) 95.85%
    );
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
  }


  /*  TESTIMONIAL STUFF  */

  .testimonial{
    /* Frame 1000007901 */
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 24px;
    width: 326px;
    height: 245px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid #D6D6D6;
    border-radius: 15px;
    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
  }

  .testimonial-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 0px;
    overflow: hidden;
    z-index: 0;
  }

 .testimonial-text {
  font-size: 24px;
  line-height: 1.4;
  color: #272727;
}

  .testimonial-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* spacing between cards */
    justify-content: center; /* center cards horizontally */
    padding: 10px;
  }

  .buttonRow {
    display: flex;
    justify-content: space-between; /* 👈 pushes buttons to edges */
    align-items: center;
    width: 100%; /* or set a fixed width if needed */
    gap: 12px;
    margin-top: 16px;
  }


 .featureIcon {
  max-height: 64px;
}

  

    /*  FEATURES STUFF  */

    .features{
      /* Frame 1000007901 */
      box-sizing: border-box;
      /* Auto layout */
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 24px;
      gap: 24px;
      width: 326px;
     
      background: rgba(255, 255, 255, 0.22);
      border: 1px solid #D6D6D6;
      border-radius: 15px;
      /* Inside auto layout */
      flex: none;
      order: 0;
      align-self: stretch;
      flex-grow: 0;
    }
  
    .features-wrapper {
      position: relative;
      width: 100%;
      padding: 40px 24px;
      overflow: hidden;
      z-index: 0;
    }
  
   .features-text {
    font-size: 16px;
    line-height: 1.4;
    color: #272727;
  }

  .features-title {
    font-size: 16px;
    line-height: 1.4;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #272727;
  }


    .features-container {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 24px; /* spacing between cards */
      justify-content: center; /* center cards horizontally */
      padding: 10px;
    }




     /*  PRICING STUFF  */

     .pricing{
      /* Frame 1000007901 */
      box-sizing: border-box;
      /* Auto layout */
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 24px;
      gap: 24px;
      width: 326px;
      background: rgba(255, 255, 255, 0.22);
      border: 1px solid #D6D6D6;
      border-radius: 15px;
      /* Inside auto layout */
      flex: none;
      order: 0;
      align-self: stretch;
      flex-grow: 0;
    }
  
    .pricing-wrapper {
     
      width: 100%;
      padding: 10px 10px;
      overflow: hidden;
      z-index: 0;
    }
  
   .pricing-text {
    font-size: 16px;
    line-height: 1.4;
    color: #272727;
  }

  .pricing-title {
    font-size: 16px;
    line-height: 1.4;
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #272727;
  }


  .pricing-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px; /* spacing between cards */
    justify-content: center; /* center cards horizontally */
    padding: 10px;
  }


  .pricing-image {
    padding: 0px;
  }

  .pricing-p {
   padding: 0px;
  }

  .pricing-cost {
    padding-right: 10px;
    color: #272727;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -4%;
    text-align: center;
  }

  .pricing-month {
    color: #272727;
  }

  .navigationBack {
    display: flex;
    justify-content: flex-start; /* Aligns content to the left */
    width: 100%;
    padding: 16px 0;
  }
  
  .navigationLink {
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: inherit;
  }
  
  .navigationLink img {
    width: 20px;
    height: 20px;
  }

  .subtleText {
    font-size: 0.85rem;   /* slightly smaller than normal text */
    color: #777777;       /* soft grey */
    margin-top: 0.5rem;   /* spacing if needed */
    line-height: 1.4;
  }
  
  