/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: hsl(215, 27%, 13%);
    background-color: hsl(0, 0%, 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Color variables */
:root {
    --primary: hsl(214, 84%, 56%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-light: hsl(214, 95%, 93%);
    
    --accent: hsl(158, 64%, 52%);
    --accent-foreground: hsl(0, 0%, 98%);
    --accent-light: hsl(158, 64%, 95%);
    
    --foreground: hsl(215, 27%, 13%);
    --background: hsl(0, 0%, 100%);
    --muted-foreground: hsl(215.4, 16.3%, 46.9%);
    --card: hsl(0, 0%, 100%);
    --border: hsl(214.3, 31.8%, 91.4%);
    
    --gradient-primary: linear-gradient(135deg, hsl(214, 84%, 56%), hsl(158, 64%, 52%));
    --gradient-hero: linear-gradient(135deg, hsl(214, 95%, 93%), hsl(158, 64%, 95%));
    --gradient-card: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(210, 40%, 98%));
    
    --shadow-soft: 0 2px 10px -2px hsl(214, 84%, 56%, 0.1);
    --shadow-medium: 0 8px 30px -12px hsl(214, 84%, 56%, 0.25);
    --shadow-strong: 0 20px 40px -12px hsl(214, 84%, 56%, 0.4);
}

/* Typography */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);

}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Icons */
.check-icon, .arrow-icon, .play-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke: currentColor;
    fill: none;
}

.navbar
 {
    position: fixed;
    top: 0px;
    width: 100%;
    backdrop-filter: blur(10px);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.nav-logo { margin: 0 0 0 0;}
.logo-img{height: 5rem; width: auto;}
.logo-selector{display: flex; gap: 0.5rem;}
.logo-btn.active {
    color: var(--primary-foreground);
    background: var(--primary);
}

.logo-btn
 {
    color: var(--foreground);
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0.25rem 0.75rem;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 0.25rem;
    background: var(--border);
    transition: 0.2s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link
 {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
	font-size: 18px;
}

.nav-cta
 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0.5rem;
	width: 45px; height: 40px;
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    margin: 2px 0px;
    transition: 0.3s;
}
.mobile-nav-links
 {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    gap: 1rem;
}

.mobile-nav-link
 {
    color: var(--foreground);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0px;
}

.mobile-menu {
    padding: 1rem 0px;
    border-top: 1px solid var(--border);
	display: none;
}

.mobile-menu.show {
      display: block;
    }

@media(max-width: 768px){
	.nav-content{height: 6rem; justify-content: space-between;}
	.nav-logo{margin: 0 0;}
	.logo-img{height: 4rem;}
	.nav-menu{display: none;}
	.mobile-menu-btn{display: grid;}
}
/* Overlay */
.popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-box {
  background: #fff;
  padding: 20px 30px 30px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 600px;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px; right: 30px;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  width: 30px; height: 30px;
}

/* Form */
.popup-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}
.popup-form input,
.popup-form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.popup-form button {
  margin-top: 15px;
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

/* Hero Section */
.hero-section {
	margin-top: 5em;
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
	padding: 50px 0;
}
@media(max-width: 768px){
	.hero-section {	margin-top: 6em;}
}

.hero-decoration {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsl(214, 95%, 93%, 0.2), hsl(158, 64%, 95%, 0.2));
}

.hero-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(12rem, -12rem);
}

.hero-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-12rem, 12rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    space-y: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card);
    border-radius: 9999px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.trust-badge .check-icon {
    color: var(--accent);
}

.trust-badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

.headline-section {
    margin-bottom: 2rem;
}

.main-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item .check-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-proof {
    padding-top: 1rem;
}

.social-proof-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.75rem;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    opacity: 0.6;
}

.trust-logos div {
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-image {
    width: 100%;
    height: auto;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(214, 84%, 56%, 0.2), transparent);
}

.floating-stat {
    position: absolute;
    background: var(--card);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
    animation: pulse 2s infinite;
}

.floating-stat-1 {
    bottom: -1rem;
    left: -1rem;
}

.floating-stat-2 {
    top: -1rem;
    right: -1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-accent {
    color: var(--accent);
}

.stat-primary {
    color: var(--primary);
}

/* Payment Flow Section */
.payment-flow-section {
    padding: 4rem 0;
    background: var(--background);
}

.flow-container {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.flow-step {
    flex: 1;
    position: relative;
}

.step-card {
    background: var(--gradient-card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    background: hsl(214, 95%, 93%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
}

.step-icon-1 svg {
    color: var(--primary);
}

.step-icon-2 svg {
    color: var(--accent);
}

.step-icon-3 svg {
    color: var(--primary);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.arrow-connector {
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translateY(-50%);
    z-index: 20;
}

.arrow-connector svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.arrow-desktop {
    display: none;
}

.arrow-mobile {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    position: static;
    transform: rotate(90deg);
}

.flow-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(214, 95%, 93%, 0.05), hsl(158, 64%, 95%, 0.05));
    border-radius: 1rem;
    z-index: -10;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--gradient-hero);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: hsl(214, 95%, 93%, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-icon-primary svg {
    color: var(--primary);
}

.feature-icon-accent svg {
    color: var(--accent);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    padding: 3rem 0;
    background: var(--primary);
    color: var(--primary-foreground);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: hsl(0, 0%, 100%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-foreground);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: hsl(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 4rem 0;
    background: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Dashboard Section */
.dashboard-section {
    padding: 4rem 0;
    background: var(--gradient-hero);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.dashboard-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dashboard-feature .check-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.dashboard-feature span {
    color: var(--muted-foreground);
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-medium);
}

/* Use Cases Section */
.use-cases-section {
    padding: 4rem 0;
    background: var(--background);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.use-case-card {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.use-case-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.use-case-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-foreground);
}

.use-case-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.use-case-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

.cancellation-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.cancellation-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: hsl(0, 84.2%, 60.2%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cancellation-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: hsl(0, 84.2%, 60.2%);
}

.cancellation-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.cancellation-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Social Proof Section */
.social-proof-section {
    padding: 3rem 0;
    background: var(--primary);
    color: var(--primary-foreground);
}

.social-proof-content {
    text-align: center;
}

.social-proof-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: hsl(0, 0%, 100%, 0.8);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: var(--gradient-hero);
}

.pricing-card {
    max-width: 24rem;
    margin: 0 auto;
    background: var(--card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border);
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.pricing-subtitle
 {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    display: block;
}

.pricing-amount
 {
    font-size: 1.125rem;
    color: var(--accent);
    font-weight: 600;
}

.pricing-rate {
	text-align: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-feature .check-icon {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-feature span {
    color: var(--muted-foreground);
    text-align: left;
}

.pricing-cta {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.pricing-note
 {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-align: center;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: var(--background);
}

.final-cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: hsl(215, 27%, 13%);
    color: hsl(0, 0%, 98%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: hsl(0, 0%, 70%);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: hsl(0, 0%, 70%);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: hsl(0, 0%, 98%);
}

.footer-contact p {
    color: hsl(0, 0%, 70%);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(0, 0%, 30%);
    text-align: center;
}

.footer-compliance {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-compliance span {
    font-size: 0.875rem;
    color: hsl(0, 0%, 70%);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: hsl(0, 0%, 70%);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta-content {
    position: relative;
}

.floating-dismiss {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background: hsl(0, 84.2%, 60.2%);
    color: hsl(0, 0%, 98%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.floating-dismiss:hover {
    background: hsl(0, 84.2%, 50%);
}

.floating-dismiss svg {
    width: 0.75rem;
    height: 0.75rem;
}

.floating-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-strong);
    animation: pulse 2s infinite;
}

.floating-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.floating-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--foreground);
    color: var(--background);
    font-size: 0.875rem;
    border-radius: 0.5rem;
    white-space: nowrap;
    box-shadow: var(--shadow-medium);
}

.tooltip-arrow {
    position: absolute;
    top: 100%;
    right: 1rem;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--foreground);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .main-headline {
        font-size: 3.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .benefits-list {
        justify-content: flex-start;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .social-proof-text {
        text-align: left;
    }
    
    .trust-logos {
        justify-content: flex-start;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta-buttons {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .flow-steps {
        flex-direction: row;
    }
    
    .arrow-desktop {
        display: block;
    }
    
    .arrow-mobile {
        display: none;
    }
    
    .cancellation-feature {
        text-align: left;
    }
    
    .footer-section {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .main-headline {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-proof-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .main-headline {
        font-size: 4.5rem;
    }
}