/* ROOT COLORS */
:root {
  --font-sans: Arial, Helvetica, sans-serif;
  --tiffany: #81d8d0;
  --tiffany-dark: #49aaa2;
  --tiffany-deep: #285e5a;
  --tiffany-light: #e5f8f6;
  --white: #ffffff;
  --text: #29413f;
  --muted: #71817f;
  --gold: #c6a76a;
  --border: rgba(129, 216, 208, 0.45);
  --shadow: 0 18px 50px rgba(31, 82, 78, 0.10);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient( 180deg, #ffffff 0%, #f9fdfc 100% );
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* CONTAINER */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(129, 216, 208, 0.20);
  backdrop-filter: blur(14px);
}

/* UPDATED HEADER ALIGNMENT */
.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
}

/* LOGO */
@media (max-width: 760px) {
  input, select, textarea { max-width: 100%; }
}
.brand {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--tiffany-deep);
}

.brand span {
  color: var(--tiffany-dark);
}

/* MAIN NAV */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--tiffany-dark);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--tiffany-dark);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* LOGIN + REGISTER */
.nav-actions {
  margin-left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--tiffany-deep);
}

.register-button {
  padding: 11px 20px;
  border-radius: 50px;
  background: var(--tiffany);
  color: #174541;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

.register-button:hover {
  transform: translateY(-1px);
  background: var(--tiffany-dark);
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 85px 0;
  background: linear-gradient( 135deg, #ffffff 0%, #f4fcfb 52%, #e5f8f6 100% );
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.eyebrow {
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--tiffany-dark);
}

.hero h1 {
  font-size: clamp( 56px, 7vw, 92px );
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -3px;
  color: var(--tiffany-deep);
}

.hero h1 span {
  display: block;
  color: var(--tiffany-dark);
}

.hero-description {
  max-width: 620px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button, .secondary-button, .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-button {
  background: var(--tiffany);
  color: #174541;
  box-shadow: 0 12px 30px rgba(73, 170, 162, 0.20);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--tiffany-dark);
  color: var(--white);
}

.secondary-button {
  border: 1px solid rgba(73, 170, 162, 0.45);
  background: var(--white);
  color: var(--tiffany-deep);
}

.secondary-button:hover {
  transform: translateY(-2px);
  border-color: var(--tiffany-dark);
}

.hero-features {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

/* HERO DECORATIONS */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  top: -100px;
  right: -80px;
  background: rgba(129, 216, 208, 0.22);
}

.hero-glow-two {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: 12%;
  background: rgba(129, 216, 208, 0.14);
}

/* HERO EVENT CARD */
.hero-visual {
  display: flex;
  justify-content: center;
}

.event-card {
  width: min(470px, 100%);
  padding: 22px;
  border: 1px solid rgba(129, 216, 208, 0.48);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 30px 70px rgba(31, 82, 78, 0.13);
  backdrop-filter: blur(14px);
  transform: rotate(1.5deg);
}

.event-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-small {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--tiffany-dark);
}

.event-card-top h3 {
  margin-top: 4px;
  font-size: 28px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.live-badge {
  padding: 7px 10px;
  border-radius: 50px;
  background: #ecfff8;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  color: #3a967e;
}

.photo-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.photo {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 42px;
}

.photo-1 {
  background: linear-gradient( 135deg, #d7f5f2, #ffffff );
}

.photo-2 {
  background: linear-gradient( 135deg, #ffffff, #e8faf8 );
}

.photo-3 {
  background: linear-gradient( 135deg, #f1fbfa, #ccefea );
}

.photo-4 {
  background: linear-gradient( 135deg, #edf9f8, #ffffff );
}

.upload-preview {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.upload-preview strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--tiffany-deep);
}

.upload-preview p {
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
}

.upload-preview button {
  flex-shrink: 0;
  padding: 10px 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--tiffany);
  color: #174541;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
}

/* INTRO */
.intro-section {
  padding: 95px 0;
  background: var(--white);
}

.intro-content {
  max-width: 810px;
  text-align: center;
}

.intro-content h2, .section-heading h2, .feature-content h2, .cta-content h2 {
  font-size: clamp( 38px, 5vw, 60px );
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -1.6px;
  color: var(--tiffany-deep);
}

.intro-content > p:last-child {
  max-width: 700px;
  margin: 20px auto 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}

/* GENERAL SECTION */
.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  position: relative;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: rgba(73, 170, 162, 0.50);
}

.step-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--tiffany-light);
  font-size: 25px;
}

.step-card h3 {
  margin-top: 28px;
  font-size: 24px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.step-card p {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* FEATURES */
.feature-section {
  background: var(--tiffany-light);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.feature-content > p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 600px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}

.feature-list {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-item > span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tiffany);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  color: #174541;
}

.feature-item h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--tiffany-deep);
}

.feature-item p {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.feature-display {
  position: relative;
  min-height: 460px;
}

.floating-photo {
  position: absolute;
  padding: 11px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(31, 82, 78, 0.15);
}

.floating-photo div {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient( 135deg, #ddf7f4, #ffffff );
  font-size: 54px;
}

.floating-one {
  width: 270px;
  top: 65px;
  left: 55px;
  transform: rotate(-7deg);
}

.floating-one div {
  height: 300px;
}

.floating-two {
  width: 230px;
  top: 10px;
  right: 15px;
  transform: rotate(8deg);
}

.floating-two div {
  height: 245px;
}

.floating-three {
  width: 210px;
  right: 30px;
  bottom: 0;
  transform: rotate(-4deg);
}

.floating-three div {
  height: 200px;
}

/* EVENT TYPES */
.events-section {
  background: var(--white);
}

.event-types {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.event-type {
  padding: 30px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow);
}

.event-type span {
  display: block;
  font-size: 35px;
}

.event-type h3 {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

/* TESTIMONIALS */
.testimonials-section {
  background: #f7fcfb;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stars {
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
}

.testimonial-card > p {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
}

.testimonial-person {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tiffany-light);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  color: var(--tiffany-deep);
}

.testimonial-person strong, .testimonial-person span {
  display: block;
  font-family: var(--font-sans);
}

.testimonial-person strong {
  font-size: 13px;
  color: var(--tiffany-deep);
}

.testimonial-person span {
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
}

/* PRICING */
.pricing-section {
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-name {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--tiffany-dark);
}

.pricing-card h3 {
  margin-top: 12px;
  font-size: 43px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.pricing-description {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}

.pricing-card ul {
  margin-top: 25px;
  list-style: none;
}

.pricing-card li {
  padding: 8px 0;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
}

.pricing-button {
  width: 100%;
  margin-top: 25px;
}

.featured-pricing {
  transform: translateY(-10px);
  border: 2px solid var(--tiffany-dark);
  background: linear-gradient( 180deg, #ffffff 0%, #effbf9 100% );
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 50px;
  background: var(--tiffany-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* FAQ */
.faq-section {
  background: #f8fcfb;
}

.faq-container {
  max-width: 850px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  color: var(--tiffany-deep);
}

.faq-question span {
  font-size: 22px;
  font-weight: 400;
  color: var(--tiffany-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

/* CTA */
.cta-section {
  padding: 110px 0;
  background: var(--tiffany-deep);
  color: var(--white);
}

.cta-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-content .eyebrow {
  color: var(--tiffany);
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p {
  max-width: 660px;
  margin: 20px auto 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.cta-button {
  margin-top: 30px;
  background: var(--tiffany);
  color: #174541;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: var(--white);
}

/* FOOTER */
.site-footer {
  padding: 70px 0 25px;
  background: #153b39;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 310px;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.8;
}

.footer-grid h4 {
  margin-bottom: 15px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
}

.footer-grid a:hover {
  color: var(--tiffany);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--font-sans);
  font-size: 11px;
  text-align: center;
}

/* MESSENGER */
.messenger-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  min-height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 50px;
  background: var(--tiffany-dark);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(31, 82, 78, 0.28);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  transition: 0.2s ease;
}

.messenger-button:hover {
  transform: translateY(-2px);
  background: var(--tiffany-deep);
}

.messenger-icon {
  font-size: 18px;
}

/* AUTH PAGES */
.auth-page {
  min-height: 100vh;
  background: linear-gradient( 135deg, #ffffff 0%, #f4fcfb 50%, #e5f8f6 100% );
}

.auth-main {
  position: relative;
  min-height: calc(100vh - 78px);
  padding: 70px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-main::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: 8%;
  right: 7%;
  border-radius: 50%;
  background: rgba(129, 216, 208, 0.18);
  z-index: 0;
}

.auth-main::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  bottom: 7%;
  left: 7%;
  border-radius: 50%;
  background: rgba(129, 216, 208, 0.13);
  z-index: 0;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 46px 42px;
  border: 1px solid rgba(129, 216, 208, 0.55);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 24px 65px rgba(31, 82, 78, 0.12);
  backdrop-filter: blur(12px);
}

/* AUTH HEADING */
.auth-heading {
  margin-bottom: 30px;
  text-align: center;
}

.auth-heading .eyebrow {
  margin-bottom: 10px;
}

.auth-heading h1 {
  font-size: clamp(36px, 6vw, 50px);
  line-height: 1.1;
  font-weight: 400;
  color: #315f5c;
}

.auth-heading > p:last-child {
  max-width: 390px;
  margin: 15px auto 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* FORM */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--tiffany-deep);
}

.form-group input {
  width: 100%;
  height: 52px;
  padding: 0 17px;
  border: 1px solid rgba(73, 170, 162, 0.45);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
  border-color: var(--tiffany-dark);
  box-shadow: 0 0 0 4px rgba(129, 216, 208, 0.17);
}

/* PASSWORD */
.password-field {
  position: relative;
}

.password-field input {
  padding-right: 70px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: var(--tiffany-dark);
}

/* TERMS */
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.terms-row input {
  margin-top: 4px;
  accent-color: var(--tiffany-dark);
}

.terms-row a {
  font-weight: 700;
  color: var(--tiffany-dark);
  text-decoration: none;
}

/* AUTH BUTTON */
.auth-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: var(--tiffany);
  color: #174541;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(73, 170, 162, 0.20);
  transition: 0.2s ease;
}

.auth-submit:hover {
  transform: translateY(-2px);
  background: var(--tiffany-dark);
  color: white;
}

/* AUTH ERROR */
.auth-message {
  margin-bottom: 22px;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
}

.auth-error {
  border: 1px solid #ecc7c7;
  background: #fff5f5;
  color: #8c4747;
}

/* AUTH FOOTER */
.auth-footer {
  margin-top: 27px;
  padding-top: 22px;
  border-top: 1px solid #edf2f1;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted);
}

.auth-footer a {
  font-weight: 800;
  color: var(--tiffany-dark);
  text-decoration: none;
}

/* LOGIN OPTIONS */
.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.remember-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
}

.remember-row input {
  accent-color: var(--tiffany-dark);
}

.forgot-link {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--tiffany-dark);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* TABLET */
@media (max-width: 1000px) {
  .main-nav {
    gap: 18px;
  }

  .nav-actions {
    margin-left: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-display {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .event-types {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .featured-pricing {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* MOBILE */
@media (max-width: 760px) {
  .container {
    width: min( 100% - 28px, 1180px );
  }

  .nav-container {
    min-height: 68px;
  }

  .brand {
    font-size: 26px;
  }

  .main-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-button, .secondary-button {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 9px;
  }

  .event-card {
    transform: none;
  }

  .photo {
    min-height: 120px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-display {
    min-height: 390px;
  }

  .floating-one {
    width: 220px;
    left: 10px;
  }

  .floating-one div {
    height: 250px;
  }

  .floating-two {
    width: 180px;
    right: 0;
  }

  .floating-two div {
    height: 200px;
  }

  .floating-three {
    width: 160px;
    right: 10px;
  }

  .floating-three div {
    height: 150px;
  }

  .event-types {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .messenger-text {
    display: none;
  }

  .messenger-button {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
  }

}

/* SMALL MOBILE */
@media (max-width: 500px) {
  .nav-actions {
    gap: 8px;
  }

  .login-link {
    font-size: 12px;
  }

  .register-button {
    padding: 9px 14px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .event-types {
    grid-template-columns: 1fr;
  }

  .upload-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-main {
    padding: 35px 15px;
  }

  .auth-card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .login-options {
    align-items: flex-start;
    flex-direction: column;
  }

}

.pricing-summary {
  margin-top: 22px;
  padding: 15px 17px;
  border-radius: 16px;
  background: var(--tiffany-light);
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-sans);
}

.pricing-summary strong {
  font-size: 14px;
  color: var(--tiffany-deep);
}

.pricing-summary span {
  font-size: 12px;
  color: var(--muted);
}

/* SELECTED PLAN ON REGISTER PAGE */
.selected-plan-box {
  margin-bottom: 24px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--tiffany-light);
}

.selected-plan-label {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--tiffany-dark);
}

.selected-plan-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.selected-plan-content strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--tiffany-deep);
}

.selected-plan-content p {
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
}

.change-plan-link {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: var(--tiffany-dark);
}

.change-plan-link:hover {
  text-decoration: underline;
}

/* PORTAL */
.portal-main {
  min-height: calc(100vh - 78px);
  padding: 65px 0 100px;
  background: linear-gradient( 180deg, #f8fdfc 0%, #ffffff 100% );
}

.portal-welcome {
  margin-bottom: 35px;
}

.portal-welcome h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.portal-welcome > div > p:last-child {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--muted);
}

.portal-user {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--tiffany-deep);
}

/* PLAN CARD */
.portal-plan-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.portal-plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.portal-card-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.8px;
  color: var(--tiffany-dark);
}

.portal-plan-top h2 {
  margin-top: 5px;
  font-size: 38px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

/* PLAN STATUS */
.plan-status {
  padding: 7px 13px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-active {
  background: #e7faf2;
  color: #368568;
}

.status-pending {
  background: #fff7df;
  color: #9c7423;
}

.status-expired {
  background: #fff0f0;
  color: #a64d4d;
}

.status-inactive {
  background: #f1f3f3;
  color: #6f7d7b;
}

/* PLAN PRICE */
.portal-plan-price {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.portal-plan-price strong {
  font-size: 34px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.portal-plan-price span {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--muted);
}

/* PLAN STATS */
.portal-plan-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan-stat {
  padding: 18px;
  border-radius: 17px;
  background: var(--tiffany-light);
}

.plan-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.plan-stat span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

/* PLAN FEATURES */
.portal-feature-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.portal-feature-item {
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 13px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text);
}

.portal-feature-item span {
  margin-right: 5px;
  font-weight: 900;
  color: var(--tiffany-dark);
}

/* PAYMENT PENDING */
.payment-pending-box {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid #f0dc9b;
  border-radius: 18px;
  background: #fffaf0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.payment-pending-box strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #7b5b17;
}

.payment-pending-box p {
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #947b45;
}

/* PORTAL SECTIONS */
.portal-section {
  margin-top: 50px;
}

.portal-section-heading h2 {
  font-size: 34px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

/* QUICK ACTIONS */
.portal-actions-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.portal-action-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.portal-action-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--tiffany-light);
  font-size: 23px;
}

.portal-action-card h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 400;
  color: var(--tiffany-deep);
}

.portal-action-card p {
  margin-top: 9px;
  min-height: 63px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.portal-action-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  color: var(--tiffany-dark);
}

.portal-disabled-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: #a0aaa8;
}

/* PORTAL RESPONSIVE */
@media (max-width: 1000px) {
  .portal-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portal-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 650px) {
  .portal-plan-card {
    padding: 24px;
  }

  .portal-plan-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-plan-stats {
    grid-template-columns: 1fr;
  }

  .portal-feature-grid {
    grid-template-columns: 1fr;
  }

  .portal-actions-grid {
    grid-template-columns: 1fr;
  }

  .payment-pending-box {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-pending-box .primary-button {
    width: 100%;
  }

}
