/* =========================================================
   GLASS HEADER (Slim, Minimal)
   ========================================================= */
.header {
  width: 100%;
  padding: 10px 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.55);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* -------------------------
   Logo
   ------------------------- */
.header-logo img {
  width: 34px !important;
  height: auto !important;
  transition: 0.25s ease;
}

.header-logo img:hover {
  transform: translateY(-2px);
}

/* -------------------------
   Navigation Links
   ------------------------- */
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: 24px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #222;
  transition: 0.25s;
}

.nav-links a:hover {
  color: #3A76F0;
}

/* -------------------------
   Header CTA Button
   ------------------------- */
.header-btn {
  margin-left: 50px;
  padding: 9px 20px;
  background: #3A76F0;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  white-space: nowrap;
}

.header-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,118,240,0.25);
}

/* =========================================================
   HAMBURGER MENU (Mobile)
   ========================================================= */

/* Button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #222;
  border-radius: 3px;
  transition: 0.3s;
}

/* Dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mobile-menu a {
  text-decoration: none;
  color: #222;
  font-size: 17px;
  padding: 12px 0;
  transition: 0.2s;
}

.mobile-menu a:hover {
  color: #3A76F0;
}

/* When open */
.mobile-menu.open {
  display: flex;
}

/* =========================================================
   RESPONSIVE HEADER BEHAVIOR
   ========================================================= */
@media (max-width: 750px) {
  .nav-links {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* =========================================================
   GLOBAL FOOTER
   ========================================================= */

.site-footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  color: #777;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-top: 1px solid #e6e6e6;

  opacity: 0;
  animation: footerFade 1s ease forwards;
  animation-delay: 0.25s;
}

/* Smooth fade-in */
@keyframes footerFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =========================================================
   SHORTLINK HERO + FORM
   ========================================================= */

.short-hero {
  width: 100%;
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
  padding: 20px;
}

/* Title */
.short-title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
  white-space: nowrap;

}

.short-title .blue {
  color: #3A76F0;
}

/* Subtitle */
.short-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* Form Container */
.short-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

/* Input */
.short-input {
  flex: 1;
  padding: 14px 20px;
  font-size: 16px;
  border-radius: 10px;
  border: 2px solid #ddd;
  outline: none;
  transition: 0.25s;
  max-width: 500px;
}

.short-input:focus {
  border-color: #3A76F0;
  box-shadow: 0 0 10px rgba(58,118,240,0.15);
}

/* Submit Button */
.short-submit {
  padding: 14px 22px;
  font-size: 16px;
  background: #3A76F0;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s;
  white-space: nowrap;
}

.short-submit:hover {
  background: #2F63CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58,118,240,0.25);
}

/* Note */
.short-note {
  margin-top: 20px;
  font-size: 15px;
  color: #666;
}

/* Mobile */
@media (max-width: 600px) {
  .short-form {
    flex-direction: column;
  }

  .short-submit {
    width: 100%;
  }
}
/* Animated typing text */
.typed-text {
  color: #3A76F0;
  font-weight: 800;
}

.typed-cursor {
  display: inline-block;
  margin-left: 2px;
  color: #3A76F0;
  animation: blink 0.7s infinite;
}

/* Cursor blink */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* TWO-COLUMN LAYOUT */
.short-container {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 60px;
  padding: 0 20px;
}

/* LEFT COLUMN */
.short-left {
  flex: 1;
}

/* RIGHT COLUMN */
.short-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PROMOTION BOX */
.promo-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.promo-box h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 10px;
}

.promo-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

.promo-box ul {
  list-style: none;
  padding: 0;
}

.promo-box li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

/* MOBILE */
@media(max-width: 850px) {
  .short-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .promo-box {
    margin: 0 auto;
  }
}

/* =========================================================
   CREATOR / FREELANCE PROMOTION SECTION
   ========================================================= */

.creator-promo {
  width: 100%;
  margin-top: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.creator-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  padding: 40px;
  max-width: 900px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.creator-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.creator-desc {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.creator-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.creator-features li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.creator-note {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* CTA Button */
.creator-button {
  display: inline-block;
  padding: 14px 26px;
  background: #3A76F0;
  color: white;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.25s;
}

.creator-button:hover {
  background: #2F63CC;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(58,118,240,0.25);
}

/* Smooth reveal animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.soft-divider {
  width: 100%;
  text-align: center;
  margin: 60px 0 40px;
  opacity: 0.8;
}

.soft-divider span {
  display: inline-block;
  padding: 8px 18px;
  font-size: 18px;
  font-weight: 600;
  color: #444;
  background: rgba(255,255,255,0.75);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* ==========================================================
   ENHANCED PRICING CARDS
   ========================================================== */

.pricing-section {
  padding: 70px 20px;
  text-align: center;
}

.pricing-title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 8px;
}

.pricing-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.pricing-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 35px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.price-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.35s;
  overflow: hidden;
  text-align: left;
}

.ribbon-flat {
  background: #FEC84B;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 12px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 20;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Icons */
.card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Micro description */
.micro-copy {
  font-size: 15px;
  color: #777;
  margin-top: -5px;
}

/* Pricing text */
.price {
  font-size: 42px;
  font-weight: 900;
  margin: 15px 0 20px;
  color: #3A76F0;
}

/* Feature list */
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.price-card ul li {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

/* CTA button */
.price-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3A76F0;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.price-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
}

/* Highlighted "Most Popular" card */
.highlight {
  background: linear-gradient(135deg, rgba(58,118,240,0.9), rgba(58,118,240,0.7));
  color: white;
}

.highlight .price,
.highlight ul li,
.highlight .micro-copy {
  color: white !important;
}

/* Ribbon */
.ribbon {
  position: absolute;
  top: -8px;
  right: -28px;
  background: #FEC84B;
  color: #000;
  padding: 6px 50px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(35deg);
  border-radius: 4px;
}

/* Premium border */
.premium {
  border: 2px solid #3A76F0;
  box-shadow: 0 8px 28px rgba(58,118,240,0.25);
}

/* Footer note */
.pricing-footer-note {
  margin-top: 40px;
  color: #555;
  font-size: 16px;
}

.pricing-footer-note a {
  color: #3A76F0;
  font-weight: 600;
  text-decoration: none;
}

/* ===========================================
   CUSTOM CTA BANNER
   =========================================== */

.custom-cta {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.custom-cta-inner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  padding: 25px 35px;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 25px;
  animation: fadeInUp 0.4s ease;
}

.custom-cta-icon {
  font-size: 34px;
}

.custom-cta-inner h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #222;
}

.custom-cta-inner p {
  margin: 3px 0 0;
  font-size: 16px;
  color: #555;
}

.custom-cta-btn {
  margin-left: auto;
  padding: 12px 24px;
  background: #3A76F0;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.25s ease;
  white-space: nowrap;
}

.custom-cta-btn:hover {
  background: #2F63CC;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 750px) {
  .custom-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .custom-cta-btn {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
