/* 
  RentBlu Stylesheet
  Custom premium styling for RentBlu SaaS Landing Page & Portal
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
  /* Brand Colors */
  --primary-blue: #1D4ED8;
  --accent-blue: #38BDF8;
  --deep-blue: #1E3A8A;
  --dark-text: #0F172A;
  --secondary-text: #475569;
  --border-color: #E2E8F0;
  --background: #FFFFFF;
  --light-bg: #F8FAFC;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Gradients */
  --blue-gradient: linear-gradient(135deg, #1E3A8A 0%, #1D4ED8 60%, #1E40AF 100%);
  --blue-gradient-soft: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(29, 78, 216, 0.05) 50%, rgba(56, 189, 248, 0.05) 100%);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(226, 232, 240, 0.8);

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Layout Standards */
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --max-width: 1280px;
  --header-height: 80px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-premium: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 8px 10px -6px rgba(37, 99, 235, 0.05);
}

/* --- Reset & Base Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--background);
  color: var(--dark-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-text);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout Components --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background-color: var(--light-bg);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px auto;
}

.section-badge {
  display: inline-block;
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--secondary-text);
  font-size: 1.125rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--border-radius-md);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  border: none;
  background: var(--blue-gradient);
  background-size: 200% 100%;
  background-position: right center;
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-position: left center;
  transform: translateY(-2px);
  box-shadow: var(--shadow-premium);
}

.btn-secondary {
  background-color: white;
  border-color: var(--border-color);
  color: var(--secondary-text);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--light-bg);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--primary-blue);
  background: none;
  border: none;
  padding: 8px 16px;
}

.btn-text:hover {
  color: var(--deep-blue);
  text-decoration: underline;
}

/* --- Navigation --- */
.navbar {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--secondary-text);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--dark-text);
  transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  background: var(--blue-gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1px solid var(--border-color);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge span {
  width: 8px;
  height: 8px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: pulse-green 2s infinite;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: var(--blue-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--secondary-text);
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.hero-trust i {
  color: var(--success);
}

/* Interactive Dashboard Mockup */
.hero-visual {
  position: relative;
  z-index: 10;
}

.mockup-container {
  background-color: white;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-premium);
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.mockup-logo {
  height: 24px;
}

.mockup-user {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--border-color);
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.mockup-card {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
  background-color: var(--light-bg);
  position: relative;
}

.mockup-card-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--secondary-text);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.mockup-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.mockup-list {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 16px;
}

.mockup-list-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.mockup-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.mockup-list-item:last-child {
  border-bottom: none;
}

.mockup-status {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.mockup-status.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.mockup-status.warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

/* Floating widgets on Hero Visual */
.floating-widget {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
  animation: float 6s ease-in-out infinite;
}

.floating-widget.w1 {
  top: 15%;
  left: -15%;
}

.floating-widget.w2 {
  bottom: 15%;
  right: -10%;
  animation-delay: 2s;
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon.whatsapp {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.floating-icon.payment {
  background-color: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
}

.floating-info span {
  display: block;
  font-size: 0.75rem;
  color: var(--secondary-text);
}

.floating-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: center;
}

.pain-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  list-style: none;
}

.pain-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(239, 68, 68, 0.2);
}

.pain-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(239, 68, 68, 0.08);
  color: var(--error);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.pain-card:hover .pain-icon {
  transform: scale(1.1);
}

.pain-title {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.pain-desc {
  font-size: 0.875rem;
  color: var(--secondary-text);
}

/* --- Solution Section --- */
.solution-container {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.solution-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
}

.benefit-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-text h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.benefit-text p {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

.solution-preview img {
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(37, 99, 235, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--secondary-text);
}

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.step-card {
  position: relative;
  text-align: center;
  padding: 0 10px;
  z-index: 2;
}

.step-number {
  width: 54px;
  height: 54px;
  background: var(--blue-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 24px auto;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step-desc {
  color: var(--secondary-text);
  font-size: 0.95rem;
}

/* Line connectors between steps (Desktop only) */
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
  }
}

/* --- Pricing Section --- */
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius-lg);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-premium);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: -32px;
  background-color: var(--primary-blue);
  color: white;
  padding: 6px 60px;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-header {
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--secondary-text);
  font-weight: 500;
}

.pricing-price-sub {
  color: var(--success);
  font-weight: 600;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.pricing-feature-item i {
  color: var(--success);
}

.pricing-btn {
  width: 100%;
}

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--secondary-text);
}

/* --- FAQ Accordion --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark-text);
}

.faq-icon {
  transition: transform 0.25s ease;
  color: var(--secondary-text);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
  max-height: 500px;
  /* arbitrary large value */
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-text {
  padding: 0 24px 24px 24px;
  color: var(--secondary-text);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-text {
  border-top-color: var(--border-color);
}

/* --- Final CTA --- */
.cta-section {
  background: var(--blue-gradient);
  color: white;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}

.cta-title {
  color: white;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.cta-btn {
  background-color: white;
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.cta-btn:hover {
  background-color: var(--light-bg);
  color: var(--deep-blue);
  transform: translateY(-2px);
}

/* --- Footer --- */
.footer {
  background-color: var(--dark-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 38px;
}

.footer-desc {
  max-width: 320px;
}

.footer-links-title {
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-socials a svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.footer-socials a:hover {
  background-color: var(--primary-blue);
}

/* --- Waitlist Form Layout --- */
.waitlist-section {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 100px;
  background-color: var(--light-bg);
}

.form-container {
  max-width: 580px;
  margin: 0 auto;
  background-color: white;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 48px;
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.form-subtitle {
  color: var(--secondary-text);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: var(--light-bg);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--secondary-text);
  margin-bottom: 28px;
}

.form-checkbox input {
  margin-top: 3px;
}

.form-btn {
  width: 100%;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 480px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 10000;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: slide-up 0.5s ease-out;
}

.cookie-text {
  font-size: 0.875rem;
  color: var(--secondary-text);
}

.cookie-text a {
  color: var(--primary-blue);
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions .btn {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: all 0.3s ease;
  font-size: 1.75rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20BA5A;
}

/* --- Legal / Static Content Pages --- */
.content-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.content-meta {
  color: var(--secondary-text);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.content-body h2 {
  font-size: 1.75rem;
  margin: 36px 0 16px 0;
}

.content-body p {
  color: var(--secondary-text);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.65;
}

.content-body ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
  color: var(--secondary-text);
}

.content-body li {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

/* --- Thank You & 404 Pages --- */
.status-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
  background-color: var(--light-bg);
}

.status-card {
  text-align: center;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 60px 48px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.status-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  font-size: 2.5rem;
}

.status-icon.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.status-icon.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error);
}

.status-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.status-desc {
  color: var(--secondary-text);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.status-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-actions .btn {
  width: 100%;
}

/* --- Animations --- */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-grid {
    gap: 32px;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-preview {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .floating-widget {
    display: none;
    /* Hide floating widgets on mobile to keep layout clean */
  }

  .navbar .btn {
    display: none;
  }

  .nav-links {
    display: none;
    /* Mobile menu implementation can toggle this */
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    gap: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-container {
    padding: 24px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}

/* Colorful Icon Utilities */
.icon-blue {
  background-color: #EFF6FF !important;
  color: #2563EB !important;
  border: 1px solid #BFDBFE !important;
}

.icon-green {
  background-color: #ECFDF5 !important;
  color: #10B981 !important;
  border: 1px solid #A7F3D0 !important;
}

.icon-red {
  background-color: #FEF2F2 !important;
  color: #EF4444 !important;
  border: 1px solid #FCA5A5 !important;
}

.icon-orange {
  background-color: #FFF7ED !important;
  color: #F97316 !important;
  border: 1px solid #FED7AA !important;
}

.icon-purple {
  background-color: #FAF5FF !important;
  color: #A855F7 !important;
  border: 1px solid #E9D5FF !important;
}

.icon-indigo {
  background-color: #EEF2FF !important;
  color: #6366F1 !important;
  border: 1px solid #C7D2FE !important;
}

.icon-teal {
  background-color: #F0FDFA !important;
  color: #14B8A6 !important;
  border: 1px solid #99F6E4 !important;
}

.icon-pink {
  background-color: #FDF2F8 !important;
  color: #EC4899 !important;
  border: 1px solid #FBCFE8 !important;
}

.icon-amber {
  background-color: #FFFBEB !important;
  color: #D97706 !important;
  border: 1px solid #FDE68A !important;
}

.icon-rose {
  background-color: #FFF1F2 !important;
  color: #F43F5E !important;
  border: 1px solid #FECDD3 !important;
}

/* --- Why RentBlu Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--primary-blue);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark-text);
  font-family: var(--font-display);
}

.why-desc {
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.6;
}