/*
Theme Name: PineGlance Custom Theme
Theme URI: https://dev.pineglance.com/
Author: Antigravity
Author URI: https://dev.pineglance.com/
Description: Custom WordPress theme for the PineGlance photosharing app website. Compatible with Elementor (Free) plugin.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pineglance
*/

/* ── IMPORT GOOGLE FONTS ── */
@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400&display=swap");

/* ── LOCAL SF PRO FONTS ── */
@font-face {
  font-family: "SF Pro";
  src: url("public/fonts/FontsFree-Net-SFProDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src: url("public/fonts/SF-Pro-Display-Heavy.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src: url("public/fonts/SF-Pro-Display-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "SF Pro";
  src: url("public/fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* ── BASE & RESET STYLES ── */
body {
  margin: 0;
  padding: 0;
  line-height: normal;
  font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #2f3e46;
  background-color: #ffffff;
  letter-spacing: 1.25px;
}

/* Make sure Elementor layouts take full screen width */
.entry-content {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── FIXED/STICKY HEADER ── */
.sticky-header-wrap {
  position: fixed;
  top: 12px;
  left: 24px;
  right: 24px;
  z-index: 99;
  background-color: #effeff;
  padding: 0 72px;
  border-radius: 16px;
  box-shadow: none;
  isolation: isolate;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.sticky-header-spacer {
  height: 120px;
  flex-shrink: 0;
}

.hero-header {
  align-self: stretch;
  border-radius: 11.9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17.9px 0;
  gap: 20px;
  text-align: left;
  font-size: 20px;
  color: #2f3e46;
  font-family: 'SF Pro', sans-serif;
  position: relative;
}

.header-nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.header-nav-links h3,
.header-nav-links li {
  margin: 0;
  position: relative;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-family: inherit;
  list-style: none;
}

/* Dynamic menus mapping styles */
.header-nav-links ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-nav-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

.header-nav-links a:hover,
.header-nav-links li.current-menu-item a {
  color: #318884;
}

/* ── USE CASES DROPDOWN (Theme implementation) ── */
.use-cases-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.use-cases-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
}

.use-cases-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.use-cases-dropdown:hover .use-cases-chevron {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.use-cases-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(49, 136, 132, 0.13), 0 2px 8px rgba(0, 0, 0, 0.08);
  min-width: 450px;
  padding: 12px 8px 8px;
  z-index: 99999;
  border: 1.5px solid #e5f7f6;
  flex-direction: column;
  gap: 2px;
  box-sizing: border-box;
}

.use-cases-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.use-cases-dropdown:hover .use-cases-menu {
  display: flex;
}

.use-cases-menu a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.15s ease;
  text-align: left;
}

.use-cases-menu a:hover {
  background: #f0fdf8;
}

.use-cases-menu a .uc-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a2e35;
  font-family: 'SF Pro', sans-serif;
}

.use-cases-menu a .uc-desc {
  font-size: 12px;
  color: #6b7280;
  white-space: normal;
  line-height: 16px;
}

/* ── HAMBURGER BUTTON & MOBILE DRAWER ── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 99999;
}

.hamburger-btn span {
  width: 100%;
  height: 3px;
  background-color: #2f3e46;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 99998;
  display: flex;
  flex-direction: column;
  padding: 80px 24px 30px;
  gap: 18px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-topbar {
  display: none;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: #2f3e46;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #f0f4f5;
  font-family: 'Figtree', sans-serif;
}

.mobile-nav a.mobile-nav-sub {
  padding-left: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
}

/* ── BOOK A DEMO MODAL ── */
.demo-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0, 0, 0, .45);
  z-index: 99999;

  display: flex;
  justify-content: flex-end;
  align-items: stretch;

  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
}

.demo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.demo-modal-overlay.active .demo-modal-panel {
  transform: translateX(0);
}

.demo-modal-panel {
  width: 520px;
  max-width: 100%;
  height: 100vh;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
  overflow-y: auto;

  border-radius: 0;
  margin: 0;

  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.demo-modal-overlay.active .demo-modal-panel {
  transform: translateX(0);
}

.demo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.demo-modal-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

.demo-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .demo-modal-panel {
    max-width: 100%;
    padding: 24px;
  }
}

.demo-modal-close:hover {
  background: #e5f7f6;
  transform: scale(1.05);
}

.demo-modal-panel form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  position: relative;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
  font-family: 'Figtree', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  font-size: 16px;
  font-family: inherit;
  color: #1f2937;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #318884;
  box-shadow: 0 0 0 3px rgba(49, 136, 132, 0.15);
}

.form-group textarea {
  height: 110px;
  resize: vertical;
}

.form-error {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.form-group.has-error .form-error {
  display: block;
}

.form-row-submit {
  margin-top: 10px;
}

.form-submit-btn {
  width: 100%;
  cursor: pointer;
  border: none;
  background-color: #2f3e46;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px;
  border-radius: 10px;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
}

.form-submit-btn:hover {
  background-color: #1a2e35;
  transform: translateY(-1px);
}

.form-submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* ── SCROLL TO TOP BUTTON ── */
#scroll-to-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #68fdab 0%, #318884 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(49, 136, 132, 0.40);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.35s cubic-bezier(.4, 0, .2, 1),
    transform 0.35s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.2s ease;
}

#scroll-to-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

#scroll-to-top-btn:hover {
  box-shadow: 0 8px 28px rgba(49, 136, 132, 0.55);
  transform: translateY(-2px) scale(1.07);
}

#scroll-to-top-btn:active {
  transform: translateY(0) scale(0.97);
}

#scroll-to-top-btn svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

/* ── RESPONSIVE DESIGN BREAKPOINTS ── */
@media (max-width: 1600px) {
  .header-nav-links {
    gap: 12px;
  }

  .header-nav-links ul {
    gap: 12px;
  }

  .header-nav-links li {
    font-size: 16px;
  }

  .header-nav-buttons div {
    gap: 6px !important;
  }

  .header-nav-buttons button {
    height: 44px !important;
    padding: 6px 14px !important;
  }

  .header-nav-buttons button div {
    font-size: 16px !important;
  }
}

@media (max-width: 1240px) {
  .sticky-header-wrap {
    left: 16px;
    right: 16px;
    padding: 0 20px;
  }

  .header-nav-links {
    display: none !important;
  }

  .header-nav-buttons {
    display: flex !important;
    align-items: center;
    margin-left: auto;
    margin-right: 15px;
  }

  .header-nav-buttons div {
    gap: 6px !important;
  }

  .header-nav-buttons button {
    height: 40px !important;
    padding: 6px 14px !important;
  }

  .header-nav-buttons button div {
    font-size: 15px !important;
  }

  .hamburger-btn {
    display: flex;
    order: 3 !important;
  }

  .sticky-header-spacer {
    height: 76px;
  }
}

@media (max-width: 768px) {
  .header-nav-buttons {
    margin-right: 10px;
  }

  .header-nav-buttons div {
    gap: 5px !important;
  }

  .header-nav-buttons button {
    height: 34px !important;
    padding: 4px 10px !important;
  }

  .header-nav-buttons button div {
    font-size: 13px !important;
  }

  .header-nav-buttons .nav-btn-login button {
    width: auto !important;
  }
}

@media (max-width: 480px) {

  .hero-header>a img,
  .hero-header>a .custom-logo {
    width: 95px !important;
  }

  .header-nav-buttons {
    margin-right: 6px;
  }

  .header-nav-buttons div {
    gap: 4px !important;
  }

  .header-nav-buttons button {
    height: 30px !important;
    padding: 4px 6px !important;
  }

  .header-nav-buttons button div {
    font-size: 10.5px !important;
    line-height: 1 !important;
  }
}

@media (max-width: 768px) {
  .sticky-header-wrap {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 0 16px;
    background-color: rgba(239, 254, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }

  .hero-header {
    padding: 12px 0;
  }

  .sticky-header-spacer {
    height: 64px;
  }

  #scroll-to-top-btn {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .form-row {
    flex-direction: column;
    gap: 18px;
  }

  .demo-modal-panel {
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background: #fff;
    overflow-y: auto;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);

    /* Slide from right */
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .demo-modal-header h2 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {

  /* Pricing table mobile */
  .pricing-wrap {
    padding: 0 8px !important;
  }

  .pricing-table-outer {
    padding-top: 24px !important;
    overflow-x: auto !important;
  }

  .pricing-table,
  .pricing-rows-scroll {
    grid-template-columns: minmax(100px, 1.2fr) minmax(80px, 1fr) minmax(80px, 1fr) minmax(90px, 1fr) !important;
    font-size: 11px !important;
    min-width: 640px !important;
  }

  .pt-header-spacer {
    padding: 12px 8px 10px !important;
    font-size: 12px !important;
  }

  .pt-header-col {
    padding: 10px 4px 10px !important;
    gap: 3px !important;
  }

  .pt-plan-name {
    font-size: 11px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  .pt-original-price {
    font-size: 10px !important;
    gap: 3px !important;
  }

  .off-badge {
    font-size: 9px !important;
    padding: 1px 4px !important;
  }

  .pt-price {
    font-size: 18px !important;
  }

  .pt-gst {
    font-size: 10px !important;
  }

  .pt-billing {
    font-size: 10px !important;
  }

  .pt-btn {
    font-size: 10px !important;
    padding: 6px 0 !important;
    max-width: 100% !important;
  }

  .pt-feat-label {
    padding-left: 8px !important;
    padding-right: 4px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .pt-cell {
    font-size: 11px !important;
  }

  .pt-row>div {
    padding: 12px 0 !important;
  }

  .check {
    width: 18px !important;
    height: 18px !important;
    font-size: 10px !important;
  }

  .cross {
    width: 18px !important;
    height: 18px !important;
  }

  .popular-badge-outer {
    font-size: 10px !important;
    padding: 0 !important;
    line-height: 32px !important;
    height: 32px !important;
    top: -32px !important;
  }

  .pricing-table-clip {
    margin-top: 32px !important;
    min-width: 640px !important;
  }

  .pro-banner {
    margin: 20px 8px 32px !important;
    width: calc(100% - 16px) !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .pro-banner-left h2 {
    font-size: 26px !important;
  }

  .pricing-hero h1 {
    font-size: 28px !important;
  }
}

/* ── PRICING STYLES ── */
.pricing-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 56px 0 48px;
  text-align: center;
  font-family: 'SF Pro', Figtree, sans-serif;
}

.pricing-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: #2f3e46;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #d2f3ee;
  border: 1.5px solid #bce4d8;
  border-radius: 10px;
  padding: 6px;
  gap: 4px;
  font-family: Figtree, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.billing-toggle .tog-active {
  background: #fff;
  box-shadow: 0 0 6px rgba(45, 45, 45, 0.18);
  border-radius: 7px;
  padding: 10px 22px;
  color: #2f3e46;
  cursor: pointer;
}

.billing-toggle .tog-inactive {
  padding: 10px 16px;
  color: #717680;
  cursor: pointer;
  border-radius: 7px;
}

.pricing-wrap {
  width: 100%;
  padding: 0 60px;
  box-sizing: border-box;
  font-family: Figtree, sans-serif;
  display: flex;
  justify-content: center;
}

.pricing-table-outer {
  padding-top: 60px;
  width: 100%;
  max-width: 1280px;
  box-sizing: border-box;
}

.pricing-table-clip {
  border-radius: 14px;
  overflow: visible;
  border: 0.9px solid #e9eaeb;
  border-right: 0.9px solid #139e72;
  border-top-right-radius: 0;
  box-shadow: 0 4px 24px rgba(25, 33, 61, 0.07);
  position: relative;
  margin-top: 44px;
}

.pricing-table-clip>.pricing-table {
  border-radius: 14px 0 0 0;
  overflow: hidden;
}

.pricing-table {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) 1fr 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
}

/* Scroll grid matches header grid exactly — no scrollbar offset */
.pricing-rows-scroll {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) 1fr 1fr 1fr;
  width: 100%;
  box-sizing: border-box;
}

.pt-header-spacer {
  background: #f5f5f5;
  padding: 28px 32px 22px;
  font-size: 20px;
  font-weight: 700;
  color: #414651;
  border-bottom: 0.9px solid #e9eaeb;
  border-right: 0.9px solid #e9eaeb;
  display: flex;
  align-items: flex-end;
}

.pt-header-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 20px 20px;
  gap: 6px;
  background: #fff;
  border-bottom: 0.9px solid #e9eaeb;
  border-right: 0.9px solid #e9eaeb;
}

.pt-header-col:last-child {
  border-right: none;
}

.pt-header-col.popular {
  background: #f3faf7;
  border-top: none !important;
  border-right: 0.9px solid #139e72 !important;
  border-bottom: 0.9px solid #139e72 !important;
  border-left: 0.9px solid #139e72 !important;
  position: relative;
}

.popular-badge-outer {
  position: absolute;
  top: -44px;
  height: 44px;
  background: #70c5aa;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 44px;
  border-radius: 14px 14px 0 0;
  font-family: Figtree, sans-serif;
  box-sizing: border-box;
}

.pt-plan-name {
  font-size: 18px;
  font-weight: 500;
  color: #414651;
  text-align: center;
}

.pt-original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #a4a7ae;
  font-family: Figtree, sans-serif;
  min-height: 20px;
}

.pt-original-price .strike {
  text-decoration: line-through;
}

.off-badge {
  text-decoration: none;
  background: #d2f3ee;
  color: #139e72;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.pt-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pt-price {
  font-size: 34px;
  font-weight: 600;
  color: #252b37;
  text-align: center;
  line-height: 1;
}

.pt-gst {
  font-size: 13px;
  font-weight: 500;
  color: #a4a7ae;
}

.pt-billing {
  font-size: 13px;
  font-weight: 500;
  color: #a4a7ae;
  text-align: center;
}

.pt-btn {
  cursor: pointer;
  border: none;
  padding: 12px 0;
  width: 100%;
  max-width: 200px;
  background: #2f3e46;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  font-family: Figtree, sans-serif;
  color: #fff;
  margin-top: 6px;
}

.pt-btn:hover {
  background: #3d5260;
}

.pt-row {
  display: contents;
}

.pt-row>div {
  display: flex;
  align-items: center;
  padding: 18px 0;
  border-bottom: 0.8px solid #e9eaeb;
}

.pt-feat-label {
  padding-left: 32px !important;
  padding-right: 16px !important;
  font-size: 16px;
  font-weight: 600;
  color: #414651;
  background: #f5f5f5;
  border-right: 0.9px solid #e9eaeb;
}

.pt-cell {
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  color: #535862;
  background: #fff;
  border-right: 0.9px solid #e9eaeb;
}

.pt-cell:last-child:not(.popular-col) {
  border-right: none;
}

.pt-cell.popular-col {
  background: #f3faf7;
  border-left: 0.9px solid #139e72;
  border-right: 0.9px solid #139e72;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #70c5aa;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.check::after {
  content: "✓";
}

.cross {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.8px solid #c8cdd5;
}

/* last row cells — remove bottom border so the clip wrapper border shows cleanly */
.pricing-rows-scroll .pt-row:last-of-type>div {
  border-bottom: none;
}

.pricing-rows-scroll .pt-row:last-of-type>.pt-cell.popular-col {
  border-bottom: 0.9px solid #139e72 !important;
}

.pro-banner {
  margin: 32px auto 48px;
  max-width: 1280px;
  width: calc(100% - 120px);
  box-shadow: 0 5px 30px rgba(25, 33, 61, 0.06);
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f1f2f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  gap: 20px;
  font-family: 'SF Pro', sans-serif;
  box-sizing: border-box;
}

.pro-banner-left h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #1d1b20;
}

.pro-banner-left h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  font-family: Figtree, sans-serif;
  color: #252b37;
}

.pro-btn {
  cursor: pointer;
  border: none;
  padding: 16px 32px;
  background: #2f3e46;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  font-family: Figtree, sans-serif;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.pro-btn:hover {
  background: #3d5260;
}

/* ── CONTACT US PAGE STYLES ── */
.contact-page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-title {
  font-size: 44px;
  font-weight: 700;
  color: #1a2e35;
  margin: 0;
  font-family: 'SF Pro', sans-serif;
  line-height: 1.15;
}

.contact-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin: 0;
  font-family: 'Figtree', sans-serif;
  line-height: 1.5;
}

.contact-bullets-container {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-bullets-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  color: #1a2e35;
}

.contact-mail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2e35;
}

.contact-bullets-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-bullets-list li {
  position: relative;
  padding-left: 24px;
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
}

.contact-bullets-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #318884;
}

/* Form Card Styling */
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border: 1.5px solid #f2f4f7;
  box-sizing: border-box;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-row {
  display: flex;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}

.contact-form-group label {
  font-size: 16px;
  font-weight: 500;
  color: #1d2939;
  font-family: 'Figtree', sans-serif;
  line-height: 1.2;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  font-size: 16px;
  font-family: inherit;
  color: #1d2939;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background-color: #fff;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #318884;
  box-shadow: 0 0 0 3px rgba(49, 136, 132, 0.12);
}

.contact-form-group textarea {
  height: 160px;
  resize: vertical;
}

.contact-error-msg {
  display: none;
  font-size: 12px;
  color: #dc2626;
  margin-top: 4px;
}

.contact-form-group.has-error input,
.contact-form-group.has-error textarea {
  border-color: #d92d20;
  background-color: #fef3f2;
}

.contact-form-group.has-error .contact-error-msg {
  display: block;
}

.contact-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.contact-submit-btn {
  background-color: #1d2939;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Figtree', sans-serif;
}

.contact-submit-btn:hover {
  background-color: #101828;
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-page-container {
    padding: 40px 20px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 20px;
  }
}

.contact-connect-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1a2e35;
  font-family: Figtree, sans-serif;
}

.contact-connect-title svg {
  flex-shrink: 0;
}

/* ── FORM CARD ── */
.contact-form-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  width: 460px;
  flex-shrink: 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: 15px;
  font-weight: 500;
  color: #1a2e35;
  font-family: Figtree, sans-serif;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #e0e5ea;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: Figtree, sans-serif;
  color: #1a2e35;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #318884;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e35454;
}

.form-error {
  display: none;
  font-size: 13px;
  font-family: Figtree, sans-serif;
  color: #e35454;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.form-submit-btn {
  cursor: pointer;
  border: none;
  background-color: #1a2e35;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  font-family: Figtree, sans-serif;
  padding: 14px 36px;
  border-radius: 10px;
  transition: background-color 0.2s;
}

.form-submit-btn:hover {
  background-color: #318884;
}

.form-success-message {
  display: none;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  background-color: #e6f7f1;
  color: #1a7a5e;
  font-size: 14px;
  font-family: Figtree, sans-serif;
  text-align: center;
}

.form-success-message.show {
  display: block;
}

/* .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.contact-section>* {
  min-width: 0;
} */

/* ── USE CASES HERO CARD ── */
.use-case-hero-section {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 20px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.use-case-hero-card {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: #e5f5f5;
  /* Premium soft mint/teal background */
  padding: 32px;
  border-radius: 20px;
  box-sizing: border-box;
}

.use-case-hero-image-wrapper {
  flex-shrink: 0;
  width: 240px;
  height: auto;
  align-self: stretch;
  min-height: 200px;
  border-radius: 14px;
  overflow: hidden;
}

.use-case-hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.use-case-hero-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.use-case-hero-title {
  font-family: 'Figtree', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2e35;
  margin: 0;
  line-height: 1.25;
}

.use-case-hero-description {
  font-family: 'Figtree', sans-serif;
  font-size: 17px;
  line-height: 1.5;
  color: #475467;
  margin: 0;
}

.use-case-hero-author-row {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.use-case-hero-author-name {
  font-family: 'Figtree', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a2e35;
}

.use-case-hero-author-meta {
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: #475467;
  display: flex;
  align-items: center;
  gap: 8px;
}

.use-case-hero-author-meta span.bullet {
  color: #318884;
  /* Mint green bullet */
  font-size: 18px;
  line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .use-case-hero-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  .use-case-hero-image-wrapper {
    width: 100%;
    height: 200px;
  }

  .use-case-hero-title {
    font-size: 22px;
  }

  .use-case-hero-description {
    font-size: 15px;
  }
}

/* Home page start trial button */
.trial-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 32px;
  background: #2f3e46;
  border-radius: 8px;

  color: #fafafa;
  text-decoration: none !important;

  font-family: 'Figtree', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;

  transition: all 0.3s ease;
}

.trial-btn:hover,
.trial-btn:focus,
.trial-btn:active,
.trial-btn:visited {
  color: #fafafa;
  text-decoration: none !important;
}

.trial-btn .arrow {
  color: #fafafa;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.trial-btn:hover {
  background: #3b4d56;
}

/* ── STORY PAGE STYLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.story-hero {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 40px 0;
}

.story-hero-card {
  background: #effeff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
}

.story-hero-card-text {
  flex: 1;
}

.story-hero-card-text h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #1a2e35;
  font-family: 'SF Pro', sans-serif;
}

.story-hero-card-text p {
  margin: 0 0 12px;
  font-size: 15px;
  color: #4a5568;
  font-family: Figtree, sans-serif;
  line-height: 1.5;
}

.story-hero-author {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.story-hero-author .author-name {
  font-weight: 600;
  font-size: 14px;
  color: #1a2e35;
  font-family: Figtree, sans-serif;
}

.story-hero-author .author-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9da8b5;
  flex-shrink: 0;
}

.story-hero-author .author-loc {
  font-size: 13px;
  color: #6b7280;
  font-family: Figtree, sans-serif;
}

.story-main {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 40px;
}

.story-main h1 {
  font-size: 36px;
  font-weight: 700;
  color: #1a2e35;
  text-align: center;
  line-height: 1.25;
  margin: 0 0 24px;
  font-family: 'SF Pro', sans-serif;
}

.story-main .story-body {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.8;
  font-family: Figtree, sans-serif;
  text-align: center;
}

.story-stats {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 48px;
}

.story-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid #e5e9f0;
  border-radius: 16px;
  overflow: hidden;
}

.stat-item {
  padding: 28px 24px;
  border-right: 1.5px solid #e5e9f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e35;
  font-family: 'SF Pro', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
  font-family: Figtree, sans-serif;
}

.story-compare {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 56px;
}

.story-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-card {
  border-radius: 14px;
  padding: 28px;
}

.compare-card.before-card {
  background: #fff5f5;
  border: 1.5px solid #fde8e8;
}

.compare-card.after-card {
  background: #f0fdf8;
  border: 1.5px solid #d1fae5;
}

.compare-card h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'SF Pro', sans-serif;
  color: #1a2e35;
}

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  font-family: Figtree, sans-serif;
  color: #374151;
  line-height: 1.4;
}

.compare-list li .dot-before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f87171;
  margin-top: 4px;
  flex-shrink: 0;
}

.compare-list li .dot-after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  margin-top: 4px;
  flex-shrink: 0;
}

.story-quote {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px 64px;
  text-align: center;
}

.story-quote blockquote {
  margin: 0;
  font-size: 19px;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  font-family: Figtree, sans-serif;
  position: relative;
}

.story-quote blockquote::before {
  content: '\201C';
  font-size: 80px;
  color: #d1fae5;
  position: absolute;
  top: -20px;
  left: -24px;
  font-style: normal;
  line-height: 1;
}

.other-stories {
  width: 100%;
  background: #f9fafb;
  padding: 56px 0;
}

.other-stories-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.other-stories h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #1a2e35;
  margin: 0 0 40px;
  font-family: 'SF Pro', sans-serif;
}

.other-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: #fff;
  border: 1.5px solid #e5e9f0;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.story-card:hover {
  box-shadow: 0 8px 32px rgba(49, 136, 132, 0.10);
  transform: translateY(-2px);
}

.story-card-tag {
  font-size: 12px;
  font-weight: 600;
  color: #318884;
  font-family: Figtree, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e35;
  font-family: 'SF Pro', sans-serif;
  line-height: 1.3;
}

.story-card-desc {
  font-size: 14px;
  color: #6b7280;
  font-family: Figtree, sans-serif;
  line-height: 1.5;
  flex: 1;
}

.story-card-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.story-card-avatar-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #318884;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: Figtree, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-card-author-info .name {
  font-size: 13px;
  font-weight: 600;
  color: #1a2e35;
  font-family: Figtree, sans-serif;
}

.story-card-author-info .role {
  font-size: 12px;
  color: #9da8b5;
  font-family: Figtree, sans-serif;
}

.story-card-cta {
  margin-top: 8px;
  border: 1.5px solid #e5e9f0;
  background: #fff;
  color: #1a2e35;
  font-size: 14px;
  font-weight: 600;
  font-family: Figtree, sans-serif;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s, border-color 0.2s;
}

.story-card-cta:hover {
  background: #f0fdf8;
  border-color: #318884;
  color: #318884;
}

.story-card-active {
  border-color: #318884;
  box-shadow: 0 0 0 3px rgba(49, 136, 132, 0.10);
}

.view-stories-wrapper {
  position: relative;
  display: inline-block;
}

.view-stories-link {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 160px;
  height: 45px;
  z-index: 100;
}

@media (max-width: 767px) {
  .view-stories-link {
    top: 10px;
    right: 10px;
    width: 120px;
    height: 35px;
  }
}

.testimonial-quote {
  padding: 50px 80px;
  position: relative;
}

.testimonial-quote .quote-mark {
  color: #b7f2d6;
  font-size: 70px;
  line-height: 1;
  position: absolute;
  left: 40px;
  top: 35px;
}

.testimonial-quote p {
  margin: 0;
  font-size: 19px;
  line-height: 1.8;
  font-style: italic;
  color: #2e3f5a;
  font-weight: 400;
}

/* ── LOGO SCROLLER ── */
.logo-marquee-set>div {
  padding: 0 24px !important;
}

.logo-marquee-set>div img {
  height: 32px !important;
}

/* ── BRAND LOGO MARQUEE SCROLLER ── */
.logo-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-marquee-set>div {
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-marquee-set img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.role-label {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  width: auto;
  position: relative;
}


.photographer {
  background: #4f8fe8;
  position: absolute;
  left: 40px;
  bottom: 10px;
}

.organizer {
  background: #69d0b3;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
}

.party {
  background: #f2c14e;
  position: absolute;
  right: 60px;
  bottom: 10px;
}

/* pricing grid in home page */
/* ==========================
   Pricing Grid
========================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1340px;
  margin: 0 auto;
}

/* ==========================
   Cards
========================== */

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card h3 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #13294b;
}

.pricing-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

/* ==========================
   Price Section
========================== */

.discount-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    min-height: 28px;
}

.old-price {
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(19, 41, 75, .5);
}

.badge {
  background: #62e3a8;
  color: #0f6847;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    color: #13294b;
    min-height: 48px;
	font-family: Figtree;
	
}

.price span:first-child {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
}

.price-period {
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 400;
}

.billing {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    min-height: 20px;
}

/* ==========================
   Buttons
========================== */

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  background: #273746;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all .3s ease;
  box-sizing: border-box;
}

.pricing-btn:hover {
  opacity: .9;
}

.light-btn {
  background: #dfe7ea;
  color: #273746;
}

.compare-btn {
    background: #15F1AB;
    color: #000;
    font-weight: 700;
}

.compare-btn:hover {
    background: #0FE29F;
}

/* ==========================
   Divider
========================== */

.pricing-card hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .15);
  margin: 0 0 24px;
}

/* ==========================
   Features List
========================== */

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.pricing-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  line-height: 1.4;
  color: #334155;
  font-size: 15px;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1ba96a;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

/* ==========================
   Featured Card
========================== */

.featured {
  background: #33948d;
  color: #fff;
  transform: scaleX(1.1);
}

.featured h3,
.featured h4,
.featured .price,
.featured .price-period {
  color: #fff;
}

.featured .old-price {
  color: rgba(255, 255, 255, .55);
}

.featured .billing {
  color: rgba(255, 255, 255, .75);
}

.featured hr {
  border-top-color: rgba(255, 255, 255, .25);
}

.featured ul li {
  color: #fff;
}

/* ==========================
   Popular Tag
========================== */

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #95f16d;
  color: #14532d;
  padding: 10px 20px;
  border-radius: 0 16px 0 16px;
  font-size: 14px;
  font-weight: 600;
}

/* ==========================
   Right Column
========================== */

.side-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.small-card {
  flex: 1;
}

.custom-price {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  color: #13294b;
  margin-bottom: 32px;
}

/* ==========================
   Billing Toggle
========================== */

.billing-toggle {
  display: inline-flex;
  background: #dff2ef;
  border-radius: 12px;
  padding: 4px;
  margin: 0 auto 40px;
}

.tog-active,
.tog-inactive {
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: .3s;
}

.tog-active {
  background: #fff;
  color: #13294b;
}

.tog-inactive {
  color: #6b7280;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 1024px) {

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .side-column {
    grid-column: span 2;
    flex-direction: row;
  }
}

@media (max-width: 767px) {

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .side-column {
    flex-direction: column;
    grid-column: auto;
  }

  .pricing-card {
    padding: 24px;
  }

  .price span:first-child {
    font-size: 42px;
  }

  .custom-price {
    font-size: 34px;
  }
}

/* FAQ questions */

.faq-icon-open {
  display: none;
}

.faq-item.open .faq-icon-open {
  display: block;
}

.faq-item.open .faq-icon-close {
  display: none;
}

/* ==========================================================================
   HOMEPAGE RESPONSIVENESS OVERRIDES
   ========================================================================== */
/* Desktop (default) */
.hero-tags-row .hero-tag {
    font-size: 20px; /* Adjust as needed */
}

/* Tablet Portrait (up to 1024px) */
@media (max-width: 1024px) {
    .hero-tags-row .hero-tag {
        font-size: 18px;
    }

    .hero-tags-row .hero-tag-dot {
        width: 6px;
        height: 6px;
    }
}

/* Mobile Portrait (up to 767px) */
@media (max-width: 767px) {
    .hero-tags-row .hero-tag {
        font-size: 16px;
    }

    .hero-tags-row .hero-tag-dot {
        width: 5px;
        height: 5px;
    }
}

/* --- 2. Benefits / Role Labels & Testimonial Interleaving --- */
@media (max-width: 768px) {

  /* Benefits section background image scaling */
  .elementor-element-16052f5 img {
    height: auto !important;
    max-height: 250px !important;
    object-fit: contain !important;
  }

  /* Parent container of benefits section */
  .elementor-element-7404805 .e-con-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  /* Order header elements first */
  .elementor-element-0c4a905 {
    order: 1 !important;
  }

  .e-7d63c8e-f27c1b2 {
    order: 2 !important;
  }

  .elementor-element-16052f5 {
    order: 3 !important;
  }

  /* Make parent containers transparent for sibling flexbox ordering */
  .elementor-element-c80be2c,
  .elementor-element-59f3bcd {
    display: contents !important;
  }

  /* Alternating order: label then testimonial card */
  .photographer {
    order: 4 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 15px auto 5px auto !important;
    width: fit-content !important;
    display: inline-block !important;
  }

  .elementor-element-f5738d6 {
    order: 5 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
  }

  .organizer {
    order: 6 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 15px auto 5px auto !important;
    width: fit-content !important;
    display: inline-block !important;
  }

  .elementor-element-6d6f929 {
    order: 7 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
  }

  .party {
    order: 8 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 15px auto 5px auto !important;
    width: fit-content !important;
    display: inline-block !important;
  }

  .elementor-element-d738b4f {
    order: 9 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 25px !important;
    box-sizing: border-box !important;
  }

  /* Center pointer arrows on mobile role labels */
  .role-label:after {
    left: 50% !important;
    margin-left: -8px !important;
  }
}

/* --- 3. Features Section --- */
@media (max-width: 1200px) {
  .features-grid-row {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    height: auto !important;
  }

  .features-row2 {
    flex-direction: column !important;
  }

  /* Card widths and heights */
  .feature-card-ai,
  .feature-card-sm,
  .feature-card-secure,
  .feature-card-clients,
  .feature-card-branding {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 30px 24px !important;
    box-sizing: border-box !important;
    flex-shrink: 1 !important;
  }

  /* Inner column wrapper structures */
  .feature-ai-text-inner {
    width: 100% !important;
    max-width: 100% !important;
  }

  .feature-ai-text-col {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {

  /* AI Card image & layout stacking */
  .feature-card-ai {
    flex-direction: column-reverse !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .feature-face-img {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  /* Share card image */
  .feature-card-clients img {
    max-width: 240px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  /* Branding Card inner content stacking */
  .feature-card-branding {
    padding-bottom: 30px !important;
  }

  .feature-card-branding h1 {
    width: 100% !important;
    height: auto !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 16px !important;
  }

  .feature-card-branding>div {
    flex-direction: column !important;
    gap: 24px !important;
    max-width: 100% !important;
  }

  .feature-card-branding img[src*="Domain-image"] {
    width: 100% !important;
    max-width: 320px !important;
    height: auto !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
  }

  .feature-card-branding img[src*="Brand-Shape"] {
    display: none !important;
  }
}

/* --- 4. Designed For Section --- */
@media (max-width: 1200px) {
  .designed-for-section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 16px !important;
  }

  .designed-for-tags {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .designed-for-tags span {
    font-size: 13px !important;
    padding: 6px 12px !important;
  }
}

/* --- 5. Try Pineglance Section --- */
@media (max-width: 1200px) {

  .try-pineglance-row,
  .try-pineglance-inner,
  .try-pineglance-card {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .try-pineglance-card {
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 24px !important;
  }

  .try-howitworks-imgcard {
    width: 100% !important;
    max-width: 320px !important;
    height: 240px !important;
  }

  .try-pineglance-banner {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    padding: 24px !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  .try-pineglance-banner h1 {
    width: 100% !important;
    height: auto !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
	
  .try-howitworks-imgcard {
      height: auto !important;
      aspect-ratio: 275 / 290;
      overflow: visible;
   }

  .try-pineglance-banner div {
    width: 100% !important;
    height: auto !important;
  }

  .try-pineglance-banner img[src*="Vector2"] {
    display: none !important;
  }
}

/* ==========================================================================
   CONTACT US PAGE RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {

  /* Parent container wrapping details (left) and form (right) */
  .elementor-element-c6cfd24 {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 40px 16px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* Details wrapper */
  .contact-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Heading and info list */
  .elementor-element-de783f0,
  .elementor-element-09ea990 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Form wrapper */
  .elementor-element-b59910d {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 768px) {

  /* Form panel and fields wrap */
  .ccf-wrap {
    padding: 24px 16px !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ccf-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  /* Half-width and full-width field wrappers stack vertically */
  .ccf-field,
  .ccf-field-half,
  .ccf-field-full {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Submit button behaves nicely */
  .ccf-submit-row {
    width: 100% !important;
    display: block !important;
  }

  .ccf-btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   PRICING PAGE RESPONSIVENESS OVERRIDES
   ========================================================================== */

body.page-id-695 h1.elementor-heading-title {
  font-size: clamp(28px, 6vw, 48px) !important;
  line-height: 1.2 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

#pricing-hero h1,
body.page-id-695 h1.e-heading-base {
  font-size: clamp(28px, 6vw, 48px) !important;
  line-height: 1.2 !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

#pricing-hero img,
.pricing-hero img {
  max-width: 100% !important;
  height: auto !important;
}

#pricing-hero,
.pricing-hero {
  width: 100% !important;
  box-sizing: border-box !important;
}


/* Home Page - Try Pineglance with your next event */
.try-pineglance-section {
  max-width: 1247px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  position: relative;
}

.how-it-works-card {
  width: 275px;
  border-radius: 12px;
  overflow: hidden;
}

.how-it-works-image {
  width: 100%;
  height: 184px;
  object-fit: cover;
  display: block;
}

.how-it-works-footer {
  background: #EDF6F5;
  padding: 28px;
}

.how-it-works-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2F3E46;
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  text-decoration: none;
  width: max-content;
  font-size: 22px;
  font-weight: 600;
}

.how-it-works-btn img {
  width: 29px;
  height: 29px;
}

.try-banner {
  flex: 1;
  min-height: 282px;
  background: #C1E9E9;
  border-radius: 12px;
  padding: 24px 31px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner-shape {
  position: absolute;
  right: -202px;
  bottom: -273px;
  width: 635px;
  z-index: 1;
}

.try-banner h2 {
  max-width: 470px;
  font-size: 36px;
  line-height: 42px;
  color: #2F3E46;
  position: relative;
  z-index: 2;
}

.try-banner p {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.try-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #68FDAB;
  color: #2F3E46;
  border-radius: 8px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  width: max-content;
  position: relative;
  z-index: 2;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: #effeff;
    border: 1.5px solid #b7ede8;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #0c5552;
    font-family: "Figtree", sans-serif;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}