:root {
      --navy: #050920;
      --navy-dark: #020516;
      --gold: #F5C542;
      --gold-soft: #F9E4A6;
      --red: #D90429;
      --text-main: #000000;
      --text-muted: #6B7280;
      --bg-light: #F3F4F6;
      --card-border: #E5E7EB;
      --shadow-soft: 0 18px 35px rgba(15, 23, 42, 0.10);
      --radius-lg: 18px;
      --radius-xl: 26px;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: #ffffff;
      color: var(--text-main);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* Notification Bar */
    .top-bar {
      background: linear-gradient(90deg, #b91c1c, #f97316);
      color: #fff;
      text-align: center;
      padding: 8px 16px;
      font-size: 0.9rem;
      font-weight: 600;
      position: sticky;
      top: 0;
      z-index: 40;
    }

    .top-bar span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* CTA Buttons */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 999px;
      background: linear-gradient(135deg, #fcd34d, #f59e0b);
      color: #111827;
      font-weight: 700;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(245, 158, 11, 0.45);
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      text-align: center;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(245, 158, 11, 0.6);
      background: linear-gradient(135deg, #fbbf24, #d97706);
    }

    .btn-primary small {
      font-weight: 500;
      opacity: 0.9;
    }

    /* Section spacing */
    section {
      padding: 64px 0;
    }

    @media (min-width: 768px) {
      section {
        padding: 90px 0 70px;
      }
      section.hero{
        padding: 40px 0 0px;
      }
    }
    
    

    @media (max-width: 780px) {
      section.hero {
        padding: 40px 0 0;
      }
    }
    
    @media (max-width: 980px) {
      #ixsvra{
          display:block !important;
      }
    }

    /* HERO */
    .hero {
      background: radial-gradient(circle at top left, #1f2937 0, #020617 55%, #020516 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 10%, rgba(56, 189, 248, 0.18), transparent 55%),
        radial-gradient(circle at 85% 80%, rgba(245, 158, 11, 0.22), transparent 55%);
      opacity: 0.85;
      pointer-events: none;
    }

    .hero-header {
      position: relative;
      text-align: center;
      margin-bottom: 48px;
    }

    .hero-inner {
      position: relative;
      display: grid;
      gap: 48px;
    }

    @media (min-width: 900px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: end;
      }
    }

    .hero-kicker {
      display: none !important;
      align-items: center;
      gap: 8px;
      padding: 4px 10px 4px 4px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid rgba(148, 163, 184, 0.5);
      margin-bottom: 16px;
      font-size: 0.8rem;
      color: #e5e7eb;
      justify-content: center;
    }

    .hero-kicker span.badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(245, 181, 60, 0.18);
      color: var(--gold);
      font-weight: 600;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .hero-title {
      font-size: 2rem;
      line-height:2;
      margin-bottom: 16px;
      font-weight: 800;
    }

    @media (min-width: 768px) {
      .hero-title {
        font-size: 2.6rem;
      }
    }

    .hero-title span.highlight {
      position: relative;
      display: inline-block;
      padding: 0 8px;
      border-radius: 10px;
      background: rgba(250, 204, 21, 0.13);
      box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.22);
      color: #facc15;
    }

    .hero-subtitle {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 24px;
      color: var(--gold-soft);
    }

    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 1.35rem;
      }
    }

    .hero-description {
      font-size: 1rem;
      margin-bottom: 18px;
      color: #e5e7eb;
    }

    @media (min-width: 768px) {
      .hero-description {
        font-size: 1.1rem;
      }
    }

    .hero-description span.gold {
      color: var(--gold-soft);
      font-weight: 700;
    }

    .hero-muted {
      font-size: 0.95rem;
      color: #cbd5f5;
      margin-bottom: 20px;
    }

    .hero-meta {
      background: rgba(15, 23, 42, 0.9);
      border-radius: var(--radius-lg);
      padding: 16px 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      margin-bottom: 24px;
      margin-top: 20px;
      display: grid;
      gap: 12px;
    }

    .hero-meta-row {
      display: flex;
      align-items: center;
      font-size: 0.96rem;
      color: #e5e7eb;
      gap: 10px;
    }

    .hero-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: var(--gold);
    }

    .hero-note {
      font-size: 0.85rem;
      color: #9ca3af;
      margin: 15px 0;

    }

    .hero-note strong {
      color: var(--gold-soft);
    }

    .hero-figure {
      position: relative;
      max-width: 100%;
      margin: 0 auto;
    }

    .hero-glow {
      position: absolute;
      inset: 10%;
      border-radius: 40px;
      background: radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.24), transparent 60%),
                  radial-gradient(circle at 100% 100%, rgba(245, 158, 11, 0.4), transparent 65%);
      filter: blur(18px);
      opacity: 0.75;
      z-index: 0;
    }

    .hero-figure img {
      position: relative;
      border-radius: 30px;
      box-shadow: var(--shadow-soft);
      z-index: 1;
    }

    /* Section titles */
    .section-heading {
      text-align: center;
      margin-bottom: 32px;
    }

    .section-heading h2 {
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .section-heading p {
      color: var(--text-muted);
      max-width: 630px;
      margin: 0 auto;
      font-size: 0.98rem;
    }

    /* Problem / Pain section */
    .section-light {
      position: relative;
      background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
      overflow: hidden;
    }

    .section-light::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('grima-testimonials.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0.06;
      z-index: 0;
      pointer-events: none;
    }

    .section-light > .container {
      position: relative;
      z-index: 1;
    }

    .pain-list {
      max-width: 1100px;
      margin: 0 auto 60px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      padding: 0 20px;
    }

    .pain-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 32px;
      border-radius: 24px;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    .pain-item::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .pain-item::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 24px;
      padding: 2px;
      background: linear-gradient(135deg, #dc2626, #ef4444, #f87171);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .pain-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
      border-color: transparent;
    }

    .pain-item:hover::before {
      transform: scaleX(1);
    }

    .pain-item:hover::after {
      opacity: 1;
    }

    .pain-item:hover .pain-icon {
      transform: scale(1.2) rotate(-10deg);
    }

    .pain-icon {
      margin-bottom: 20px;
      font-size: 3.5rem;
      line-height: 1;
      color: #dc2626;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
      border-radius: 50%;
      filter: drop-shadow(0 4px 12px rgba(220, 38, 38, 0.25));
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pain-text {
      font-size: 1.15rem;
      font-weight: 600;
      color: #1f2937;
      line-height: 1.6;
      letter-spacing: -0.01em;
    }

    @media (max-width: 768px) {
      .pain-list {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .pain-item {
        padding: 32px 24px;
      }
    }

    .problem-bottom {
      text-align: center;
      margin-top: 48px;
      padding: 32px 20px;
      border-radius: 20px;
      background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 4px 16px rgba(251, 191, 36, 0.15);
    }

    .problem-bottom p {
      font-size: 1.15rem;
      margin-bottom: 12px;
      font-weight: 500;
      color: #1f2937;
    }

    .problem-bottom h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 8px;
      background: linear-gradient(135deg, #92400e 0%, #b45309 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .problem-bottom .note {
      font-size: 1.05rem;
      color: #6b7280;
      font-weight: 500;
    }

    .problem-cta-mobile {
      display: none;
      margin-top: 22px;
      text-align: center;
    }

    @media (max-width: 767px) {
      .problem-cta-mobile {
        display: block;
      }
    }

    /* Authority section */
    .section-gold-soft {
      background: rgba(253, 246, 227, 0.5);
      text-align: center;
      position: relative;
    }
    .section-gold-soft::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('grima-testimonials.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

    .authority-grid {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 900px) {
      .authority-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
      }
    }

    .authority-photo {
      position: relative;
      max-width: 420px;
      margin: 0 auto;
    }

    .authority-photo::before {
      content: "";
      position: absolute;
      inset: 10px -10px -10px 10px;
      border-radius: 26px;
      background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), transparent);
      z-index: 0;
    }

    .authority-photo img {
      position: relative;
      border-radius: 26px;
      box-shadow: 0 18px 40px rgba(148, 163, 184, 0.5);
      z-index: 1;
    }

    .authority-content h2 {
      font-size: 1.9rem;
      font-weight: 800;
      margin-bottom: 14px;
    }

    .authority-content p {
      font-size: 1rem;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .authority-content p.lead {
      font-size: 1.02rem;
    }

    .authority-tagline {
      margin: 16px 0;
      padding: 14px 16px;
      border-radius: 14px;
      background: var(--gold);
      font-weight: 700;
      color: #111827;
      font-size: 0.98rem;
    }

    .authority-tagline span {
      display: block;
    }

    .authority-badges {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 10px;
    }

    .authority-badge {
      background: rgba(255, 255, 255, 0.85);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(215, 160, 54, 0.35);
    }

    .authority-badge span.icon {
      font-size: 1.25rem;
    }

    .authority-cta {
      margin-top: 24px;
    }

    /* Roadmap */
    .roadmap-grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    @media (min-width: 900px) {
      .roadmap-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .day-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--card-border);
      padding: 18px 18px 16px;
      background: #ffffff;
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .day-label {
      position: absolute;
      top: 14px;
      right: 14px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .day-1 .day-label {
      background: rgba(220, 38, 38, 0.08);
      color: #b91c1c;
      border: 1px solid rgba(248, 113, 113, 0.65);
    }

    .day-2 .day-label {
      background: rgba(245, 158, 11, 0.08);
      color: #92400e;
      border: 1px solid rgba(245, 158, 11, 0.6);
    }

    .day-3 .day-label {
      background: rgba(15, 23, 42, 0.85);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.6);
    }

    .day-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      padding-right: 100px;
    }

    .day-list {
      list-style: none;
      margin: 8px 0 10px;
      padding: 0;
      display: grid;
      gap: 8px;
      font-size: 0.95rem;
    }

    .day-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    .day-list svg {
      width: 18px;
      height: 18px;
      margin-top: 2px;
      flex-shrink: 0;
      color: #eab308;
    }

    .day-bottom {
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px dashed rgba(209, 213, 219, 0.8);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #16a34a;
      font-weight: 600;
    }

    .day-bottom svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .roadmap-cta {
      margin-top: 28px;
      text-align: center;
    }

    /* Testimonials */
    .section-dark {
      position: relative;
      background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #020617 100%);
      color: #e5e7eb;
      overflow: hidden;
    }

    .section-dark::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('grima-testimonials.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      opacity: 0.28;
      z-index: 0;
      pointer-events: none;
    }

    .section-dark > .container {
      position: relative;
      z-index: 1;
    }

    .testimonial-grid {
      max-width: 960px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    @media (min-width: 900px) {
      .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .testimonial-card {
      position: relative;
      border-radius: 22px;
      padding: 14px 14px 46px;
      background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8));
      border: 1px solid rgba(148, 163, 184, 0.6);
      box-shadow: 0 14px 30px rgba(15, 23, 42, 0.6);
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      top: -30px;
      left: -30px;
      width: 70px;
      height: 70px;
      background: radial-gradient(circle, rgba(250, 204, 21, 0.5), transparent 65%);
      opacity: 0.7;
    }

    .testimonial-card img {
      border-radius: 16px;
      margin-bottom: 10px;
    }

    .testimonial-text {
      font-size: 0.96rem;
      color: #e5e7eb;
    }

    .testimonial-rating {
      position: absolute;
      bottom: 10px;
      right: 12px;
      display: inline-flex;
      gap: 2px;
      font-size: 0.9rem;
      color: #facc15;
    }

    .testimonial-rating svg {
      width: 16px;
      height: 16px;
    }

    .testimonial-cta {
      margin-top: 30px;
      text-align: center;
    }

    /* Pricing */
    .pricing-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    .pricing-card {
      border-radius: var(--radius-xl);
      padding: 1px;
      background: linear-gradient(135deg, rgba(250, 204, 21, 0.4), rgba(59, 130, 246, 0.5));
    }

    .pricing-inner {
      background: #ffffff;
      border-radius: inherit;
      display: grid;
      gap: 0;
      overflow: hidden;
    }

    @media (min-width: 900px) {
      .pricing-inner {
        grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
      }
    }

    .pricing-main {
      padding: 24px 24px 20px;
    }

    .pricing-main h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .pricing-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 0.94rem;
    }

    .pricing-item-icon {
      color: #16a34a;
      font-size: 1.2rem;
      line-height: 1;
      margin-top: 2px;
    }

    .pricing-item-body span.title {
      font-weight: 600;
      display: block;
      margin-bottom: 2px;
    }

    .pricing-item-bottom {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .pricing-item-bottom span.value {
      font-weight: 700;
      color: #111827;
    }

    .pricing-side {
      background: #f9fafb;
      padding: 24px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .pricing-regular {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-decoration: line-through;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      justify-content: center;
    }

    .pricing-regular span.amount {
      font-weight: 700;
      font-size: 1.1rem;
      color: #111827;
    }

    .pricing-today-pill {
      display: inline-block;
      padding: 5px 12px;
      border-radius: 999px;
      background: #b91c1c;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .pricing-price {
      font-size: 2.6rem;
      font-weight: 800;
      color: #b91c1c;
    }

    .pricing-guarantees {
      margin-top: 14px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      font-size: 0.8rem;
      justify-content: center;
      color: var(--text-muted);
    }

    .pricing-guarantees-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .pricing-guarantees-item svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    /* FAQ */
    .section-faq {
      background: var(--bg-light);
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    }

    .faq-header {
      padding: 12px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
    }

    .faq-question {
      font-size: 0.98rem;
      font-weight: 600;
    }

    .faq-icon {
      width: 22px;
      height: 22px;
      transition: transform 0.25s ease;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      padding: 0 16px;
      font-size: 0.92rem;
      color: var(--text-muted);
      transition: max-height 0.25s ease, padding-top 0.2s ease, padding-bottom 0.2s ease;
    }

    .faq-item.open .faq-content {
      max-height: 200px;
      padding-top: 0;
      padding-bottom: 12px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(180deg);
    }

    /* Sticky footer CTA */
    .sticky-cta {
      position: sticky;
      bottom: 0;
      background: linear-gradient(90deg, #facc15, #f97316);
      padding: 10px 16px;
      z-index: 30;
      box-shadow: 0 -8px 22px rgba(15, 23, 42, 0.35);
    }

    .sticky-cta-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: center;
    }

    .sticky-cta .btn-primary {
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.35);
      background: #111827;
      color: #facc15;
      white-space: normal;
      padding-left: 20px;
      padding-right: 20px;
    }

    .sticky-cta .btn-primary:hover {
      background: #020617;
    }

    .sticky-cta .btn-primary strong {
      font-weight: 800;
    }

    /* Utilities */
    .mt-2 { margin-top: 8px; }
    .mt-3 { margin-top: 12px; }
    .mt-4 { margin-top: 16px; }
    .mt-6 { margin-top: 24px; }

    /* ======================================
       THANK YOU PAGE STYLES
       ====================================== */

    /* Success Hero Section */
    .success-hero {
      background: radial-gradient(circle at top, #0b1120 0, #020617 55%, #020617 100%);
      color: #e5e7eb;
      padding: 90px 20px 70px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .success-decorations {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
    }

    .success-dot {
      position: absolute;
      border-radius: 50%;
      background: var(--gold);
    }

    .success-dot-1 {
      top: 10%;
      left: 5%;
      width: 16px;
      height: 16px;
      opacity: 0.2;
    }

    .success-dot-2 {
      top: 30%;
      right: 10%;
      width: 24px;
      height: 24px;
      opacity: 0.3;
    }

    .success-dot-3 {
      bottom: 20%;
      left: 15%;
      width: 20px;
      height: 20px;
      background: #ffffff;
      opacity: 0.1;
    }

    .success-hero .container {
      position: relative;
      z-index: 1;
    }

    .success-check {
      margin-bottom: 32px;
      display: inline-block;
      animation: checkPulse 2s ease-in-out infinite;
    }

    .success-check svg {
      color: #11B85A;
      filter: drop-shadow(0 4px 12px rgba(17, 184, 90, 0.4));
    }

    @keyframes checkPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .success-title {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .success-subtitle {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .success-text {
      font-size: 1.15rem;
      max-width: 700px;
      margin: 0 auto 32px;
      opacity: 0.9;
      line-height: 1.7;
    }

    .success-cta-mobile {
      display: block;
      max-width: 500px;
      margin: 0 auto;
    }

    .success-cta-desktop {
      display: none;
      max-width: 500px;
      margin: 40px auto 0;
      text-align: center;
    }

    @media (min-width: 768px) {
      .success-cta-mobile {
        display: none;
      }
      .success-cta-desktop {
        display: block;
      }
      .success-title {
        font-size: 3rem;
      }
    }

    .btn-success {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #11B85A;
      color: #ffffff;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1.05rem;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(17, 184, 90, 0.3);
      width: 100%;
      text-align: center;
    }

    .btn-success:hover {
      background: #0ea04e;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(17, 184, 90, 0.4);
    }

    .btn-success small {
      display: block;
      margin-top: 4px;
      font-size: 0.85rem;
      font-weight: 500;
      opacity: 0.9;
    }

    /* Event Details Box */
    .event-details-box {
      max-width: 650px;
      margin: 0 auto;
      padding: 40px 32px;
      background: #ffffff;
      border-radius: 20px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .event-details-box > * {
      position: relative;
      z-index: 1;
    }

    .event-details-box:hover {
      transform: scale(1.01);
    }

    .event-details-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 32px;
    }

    .event-accent-bar {
      width: 8px;
      height: 56px;
      background: var(--gold);
      border-radius: 4px;
    }

    .event-details-header h2 {
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--navy);
    }

    .event-details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    @media (max-width: 600px) {
      .event-details-grid {
        grid-template-columns: 1fr;
      }
    }

    .event-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      text-align: left;
    }

    .event-icon {
      font-size: 2rem;
      color: var(--gold);
      min-width: 40px;
    }

    .event-detail-item h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--text-main);
    }

    .event-detail-item p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* Steps Grid */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .step-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .step-number {
      font-size: 3rem;
      margin-bottom: 16px;
      display: inline-block;
    }

    .step-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--text-main);
    }

    .step-card p {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Calendar Grid */
    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }

    .calendar-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      text-align: center;
    }

    .calendar-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
    }

    .calendar-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 16px;
      color: var(--gold);
      transition: transform 0.3s ease;
    }

    .calendar-card:hover .calendar-icon {
      transform: scale(1.1);
    }

    .calendar-icon svg {
      width: 100%;
      height: 100%;
    }

    .calendar-card span {
      font-size: 1.05rem;
      font-weight: 600;
      color: #e5e7eb;
    }

    /* Invite Section */
    .invite-header {
      text-align: center;
      margin-bottom: 24px;
    }

    .invite-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 24px;
      background: #ffffff;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .invite-icon svg {
      width: 32px;
      height: 32px;
      color: var(--gold);
    }

    .invite-text {
      font-size: 1.25rem;
      font-weight: 500;
      margin-bottom: 32px;
      text-align: center;
      color: var(--text-main);
      line-height: 1.7;
    }

    .share-buttons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      max-width: 600px;
      margin: 0 auto 40px;
    }

    .btn-whatsapp,
    .btn-linkedin {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      color: #ffffff;
    }

    .btn-whatsapp {
      background: #11B85A;
    }

    .btn-whatsapp:hover {
      background: #0ea04e;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(17, 184, 90, 0.3);
    }

    .btn-linkedin {
      background: #0A66C2;
    }

    .btn-linkedin:hover {
      background: #0958a8;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
    }

    .pro-tip {
      text-align: center;
      display: inline-block;
      border: 2px solid var(--gold);
      padding: 12px 24px;
      border-radius: 50px;
      background: #ffffff;
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .pro-tip span:first-child {
      font-weight: 600;
      color: var(--text-main);
    }

    /* Support Footer */
    .support-footer {
     padding: 60px 32px 40px;
      position: relative;
     }

    .support-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold) 0%, #fbbf24 50%, var(--gold) 100%);
    }

    .support-footer h2 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-main);
      position: relative;
      display: inline-block;
    }

    .support-footer h2::after {
      content: '💬';
      position: absolute;
      top: -8px;
      right: -40px;
      font-size: 1.5rem;
      animation: floatIcon 2s ease-in-out infinite;
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .support-links {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
      margin: 32px 0 24px;
    }

    .support-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 24px;
      background: #ffffff;
      border: 2px solid transparent;
      border-radius: 16px;
      color: var(--text-main);
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      position: relative;
      overflow: hidden;
    }

    .support-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .support-link:hover::before {
      left: 100%;
    }

    .support-link:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(245, 197, 66, 0.25);
    }

    .support-link svg {
      width: 24px;
      height: 24px;
      color: var(--gold);
      transition: transform 0.3s ease;
    }

    .support-link:hover svg {
      transform: scale(1.15);
    }

    .support-hours {
      font-size: 0.9rem;
      color: var(--navy-dark);
      padding: 12px 24px;
      background: #f9fafb;
      border-radius: 50px;
      display: block;
      border: 1px solid #e5e7eb;
      margin: 20px auto 0;
      max-width: 350px;
      text-align: center;
    }

/* ==============================================
   PRIVACY POLICY PAGE STYLES
   ============================================== */

/* Policy Hero Header */
.policy-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e3a5f 100%);
  padding: 80px 20px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.policy-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.policy-hero-date {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  display: inline-block;
  padding: 8px 24px;
  background: rgba(245, 197, 66, 0.15);
  border-radius: 50px;
  border: 1px solid rgba(245, 197, 66, 0.3);
}

/* Policy Tabs Navigation */
.policy-tabs {
  background: white;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #f0f4f8;
}

.policy-tabs-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.policy-tab {
  padding: 12px 32px;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.1), transparent);
  transition: left 0.5s ease;
}

.policy-tab:hover::before {
  left: 100%;
}

.policy-tab:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 197, 66, 0.2);
}

.policy-tab.active {
  background: linear-gradient(135deg, var(--navy-dark) 0%, #1e3a5f 100%);
  color: white;
  border-color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(9, 47, 79, 0.25);
}

/* Policy Content Sections */
.policy-content {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8fafc 0%, white 100%);
}

.policy-content-section {
  margin: 0 auto;
  position: relative;
}
.policy-nav-section{
    position: relative;
}

.policy-nav-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(grima-testimonials.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.06;
    z-index: 0;
    pointer-events: none;
}
.policy-content-box {
  background: white;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 32px;
  border: 1px solid #e2e8f0;
}

.policy-content-box h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 16px;
}

.policy-content-box h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  border-radius: 2px;
}

/* Policy Blocks */
.policy-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e2e8f0;
}

.policy-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-block h3 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-block h3::before {
  content: '▸';
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
}

.policy-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 16px;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

/* Policy Sub-blocks */
.policy-subblock {
  margin: 24px 0;
  padding-left: 24px;
  border-left: 3px solid #e2e8f0;
}

.policy-subblock h4 {
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.policy-subblock p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 12px;
}

.policy-subblock ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.policy-subblock ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 8px;
  padding-left: 8px;
}

/* Policy Lists */
.policy-list {
  list-style-type: none;
  margin: 16px 0;
  padding: 0;
}

.policy-list li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2rem;
}

/* Acceptance Box */
.policy-acceptance {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
}

.policy-acceptance p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--navy-dark);
  margin-bottom: 0;
  font-weight: 500;
}

/* Signature Section */
.policy-signature {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.policy-signature p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--navy-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.policy-signature p:last-child {
  margin-bottom: 0;
}

/* Contact Information Section */
.policy-contact-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f0ff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.policy-contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-contact-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(9, 47, 79, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.policy-contact-header h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.policy-contact-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

.policy-contact-header p {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-top: 24px;
}

.policy-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.policy-contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.policy-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245, 197, 66, 0.05), transparent);
  transition: left 0.6s ease;
}

.policy-contact-card:hover::before {
  left: 100%;
}

.policy-contact-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(245, 197, 66, 0.25);
}

.contact-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(245, 197, 66, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.policy-contact-card:hover .contact-icon-circle {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 30px rgba(245, 197, 66, 0.4);
}

.contact-emoji {
  font-size: 2.5rem;
  display: block;
  animation: floatIcon 3s ease-in-out infinite;
}

.policy-contact-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-link {
  font-size: 1rem;
  color: var(--navy-dark);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #cbd5e1;
}

.contact-link:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.05);
}

.contact-link.static {
  cursor: default;
  background: #f8fafc;
}

.contact-link.static:hover {
  background: #f8fafc;
  color: var(--navy-dark);
  transform: none;
}

.policy-contact-footer {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.policy-contact-footer p {
  font-size: 1rem;
  color: var(--navy-dark);
  background: white;
  padding: 16px 32px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--gold);
  font-weight: 500;
}

.policy-contact-footer strong {
  color: var(--gold);
  font-weight: 700;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
  .policy-hero {
    padding: 60px 20px 40px;
  }

  .policy-hero h1 {
    font-size: 2rem;
  }

  .policy-hero-date {
    font-size: 0.9rem;
  }

  .policy-tabs {
    padding: 16px;
  }

  .policy-tabs-container {
    gap: 8px;
  }

  .policy-tab {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .policy-content {
    padding: 40px 16px;
  }

  .policy-content-box {
    padding: 32px 20px;
  }

  .policy-content-box h2 {
    font-size: 1.6rem;
  }

  .policy-block h3 {
    font-size: 1.2rem;
  }

  .policy-subblock {
    padding-left: 16px;
  }

  .policy-contact-section {
    padding: 60px 20px;
  }

  .policy-contact-header h2 {
    font-size: 2rem;
  }

  .policy-contact-header p {
    font-size: 1rem;
  }

  .policy-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-contact-card {
    padding: 32px 24px;
  }

  .contact-icon-circle {
    width: 70px;
    height: 70px;
  }

  .contact-emoji {
    font-size: 2rem;
  }

  .policy-contact-card h3 {
    font-size: 1.3rem;
  }

  .policy-contact-footer p {
    font-size: 0.9rem;
    padding: 12px 24px;
  }
}
