/*
* LinkKart - Ana CSS Dosyası
* Tüm CSS içeriklerini birleştiren tek dosya
*/

/* Root Variables */
:root {
  /* Renkler */
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --primary-bg: rgba(99, 102, 241, 0.1);

  --secondary-color: #f43f5e;
  --secondary-dark: #e11d48;
  --secondary-light: #fb7185;

  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #06b6d4;

  --white: #ffffff;
  --black: #000000;

  --bg-color: #f9fafb;
  --text-color: #111827;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Tipografi */
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-size: 1rem;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  /* Gölgeler */
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Geçişler */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* Sınırlar */
  --border-radius: 0.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 9999px;

  /* Z-indeks */
  --z-behind: -1;
  --z-normal: 1;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Konteyner boyutları */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--gray-900);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

/* Layout */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-regular {
  font-weight: 400;
}

.text-light {
  font-weight: 300;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Margin/Padding Utilities */
.m-0 {
  margin: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.m-1 {
  margin: 0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mr-3 {
  margin-right: 1rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.ml-3 {
  margin-left: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mr-4 {
  margin-right: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ml-4 {
  margin-left: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mr-5 {
  margin-right: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.ml-5 {
  margin-left: 3rem;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.p-1 {
  padding: 0.25rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pr-3 {
  padding-right: 1rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pl-3 {
  padding-left: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pr-4 {
  padding-right: 1.5rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pl-4 {
  padding-left: 1.5rem;
}

.p-5 {
  padding: 3rem;
}

.pt-5 {
  padding-top: 3rem;
}

.pr-5 {
  padding-right: 3rem;
}

.pb-5 {
  padding-bottom: 3rem;
}

.pl-5 {
  padding-left: 3rem;
}

/* Flex Utilities */
.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

/* Display Utilities */
.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

/* Components CSS */
/* Butonlar */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  text-align: center;
  font-size: var(--font-size);
  line-height: 1.5;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.4);
}

.btn i {
  margin-right: 0.5rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--white);
}

.btn-success {
  background-color: var(--success-color);
  color: var(--white);
}

.btn-success:hover {
  background-color: #0da271;
  color: var(--white);
}

.btn-danger {
  background-color: var(--danger-color);
  color: var(--white);
}

.btn-danger:hover {
  background-color: #dc2626;
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-link {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.5rem;
}

.btn-link:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Dashboard Preview Card */
.preview-card {
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Yedekleme kartı stili */
.settings-card {
  width: 100%;
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-preview {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.preview-header {
  padding: 2rem 1rem;
  text-align: center;
}

.preview-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-avatar i {
  font-size: 40px;
  color: white;
}

.preview-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.preview-bio {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Formlar */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.form-control::placeholder {
  color: var(--gray-400);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: var(--gray-100);
  opacity: 1;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234B5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  appearance: none;
}

.form-select:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  vertical-align: top;
  background-color: var(--white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid var(--gray-400);
  appearance: none;
  print-color-adjust: exact;
  margin-left: -1.5rem;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25rem;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25);
}

.form-check-label {
  display: inline-block;
}

/* Alertler */
.alert {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius);
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Kartlar */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--white);
  background-clip: border-box;
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-header {
  padding: 1rem 1.5rem;
  background-color: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

/* Navigasyon */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gray-900);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--primary-color);
}

.logo-text {
  font-weight: 800;
  font-size: 1.75rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.logo-text span {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-right: 1.5rem;
}

.nav-link {
  color: var(--gray-700);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-color);
}

.navbar-actions {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}

.navbar-actions .btn+.btn {
  margin-left: 0.75rem;
}

.navbar-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background-color: transparent;
  color: var(--gray-700);
  cursor: pointer;
}



/* Anasayfa Stilleri */
/* Hero Section */
.hero-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(247, 249, 255, 0.8) 0%, rgba(229, 237, 255, 0.8) 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.col-lg-8, .col-lg-4 {
  display: flex;
  flex-direction: column;
}

.col-lg-4 {
  min-height: 80vh;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .col-lg-8, .col-lg-4 {
    width: 100%;
    min-height: unset;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-color);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device {
  width: 280px;
  position: relative;
  z-index: 1;
}

.device-mockup {
  width: 100%;
  position: relative;
  border-radius: 2.5rem;
  background-color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  aspect-ratio: 9/19;
  padding: 0.75rem;
}

.device-screen {
  width: 100%;
  height: 100%;
  background-color: var(--gray-50);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demo-profile {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  height: 100%;
}

.demo-profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.demo-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
}

.demo-name {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.demo-bio {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  text-align: center;
  max-width: 90%;
}

.demo-links {
  width: 100%;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-link {
  width: 100%;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius);
  animation: pulse 2s infinite;
}

.demo-link:nth-child(2) {
  animation-delay: 0.5s;
}

.demo-link:nth-child(3) {
  animation-delay: 1s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.98);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  top: -5%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 70%, transparent 100%);
  animation: float 8s infinite;
}

.shape-2 {
  top: 50%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, rgba(244, 63, 94, 0.05) 70%, transparent 100%);
  animation: float 12s infinite;
  animation-delay: 1s;
}

.shape-3 {
  bottom: -15%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 70%, transparent 100%);
  animation: float 9s infinite;
  animation-delay: 2s;
}

.shape-4 {
  bottom: 10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 70%, transparent 100%);
  animation: float 10s infinite;
  animation-delay: 1.5s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
  }

  25% {
    transform: translateY(-20px) translateX(10px);
  }

  50% {
    transform: translateY(0) translateX(25px);
  }

  75% {
    transform: translateY(20px) translateX(10px);
  }

  100% {
    transform: translateY(0) translateX(0);
  }
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--gray-600);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius-full);
  background-color: var(--primary-bg);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background-color: var(--gray-50);
  position: relative;
  overflow: hidden;
}

/* Global fix for how it works section underlines */
.how-it-works-section *,
.how-it-works-section *::before,
.how-it-works-section *::after {
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.how-it-works-section p,
.how-it-works-section h1,
.how-it-works-section h2,
.how-it-works-section h3,
.how-it-works-section h4,
.how-it-works-section h5,
.how-it-works-section h6,
.how-it-works-section span,
.how-it-works-section div {
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  background-image: none !important;
  box-shadow: inset 0 0 0 0 transparent !important;
}

/* Text gradient özel kuralı */
.how-it-works-section .text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
}

.steps-container {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}

.step-connector {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.step-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  border: none !important;
  border-bottom: none !important;
}

.step-item * {
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.step-item h3,
.step-item p {
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: var(--border-radius-full);
  background-color: var(--white);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  margin-right: 2rem;
  box-shadow: var(--shadow-md);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.step-text {
  color: var(--gray-600);
  margin-bottom: 0;
  border: none !important;
  border-bottom: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.step-icon {
  display: none;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius-full);
  background-color: var(--primary-bg);
  min-height: 100vh;
  overflow: hidden;
}

.auth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.auth-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.auth-card {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.auth-subtitle {
  color: var(--gray-600);
  font-size: var(--font-size);
  margin-bottom: 1.5rem;
}

.auth-form {
  margin-bottom: 2rem;
}

.input-group {
  display: flex;
  width: 100%;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: var(--font-size);
  font-weight: 400;
  color: var(--gray-700);
  text-align: center;
  background-color: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-right: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.input-group .form-control {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.form-text {
  margin-top: 0.25rem;
  font-size: var(--font-size-sm);
  color: var(--gray-600);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.form-row>.form-group {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: 1 0 0%;
}

.auth-footer {
  text-align: center;
  color: var(--gray-600);
  font-size: var(--font-size);
}

.auth-footer a {
  font-weight: 600;
}

.auth-features {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(5px);
}

.auth-features-header {
  margin-bottom: 2rem;
  text-align: center;
}

.auth-features-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item.row {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  margin-bottom: 0;
}

.feature-item .feature-content h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-item .feature-content p {
  color: var(--gray-600);
  font-size: var(--font-size-sm);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .auth-container {
    flex-direction: column;
  }

  .auth-card,
  .auth-features,
  .auth-image {
    max-width: 100%;
  }
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
  color: var(--gray-500);
  font-size: var(--font-size-sm);
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: var(--gray-300);
}

.auth-divider span {
  padding: 0 1rem;
}

/* Social Login Buttons */
.social-login {
  margin-bottom: 1.5rem;
}

.btn-outline-google {
  background-color: transparent;
  border: 1px solid #ea4335;
  color: #ea4335;
}

.btn-outline-google:hover {
  background-color: #ea4335;
  color: var(--white);
}

/* Auth Image & Mockup */
.auth-image {
  display: none;
}

@media (min-width: 992px) {
  .auth-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
  }
}

.mockup-container {
  position: relative;
}

/* Hero image mockup - Anasayfa telefon stilini iyileştirme */
.hero-image .mockup-phone {
  width: 280px;
  position: relative;
  border: 12px solid #343a40;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform var(--transition-normal);
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.hero-image .mockup-phone:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  width: 150px;
  background-color: #343a40;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 1;
}

.hero-image .mockup-screen {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

.mockup-phone {
  width: 280px;
  position: relative;
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform var(--transition-normal);
  box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
  border: 12px solid #343a40;
  border-radius: 40px;
  overflow: hidden;
  padding: 0;
  line-height: 0;
}

.mockup-phone:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 24px;
  width: 150px;
  background-color: #343a40;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 1;
}

.mockup-phone:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

.mockup-screen {
  width: 100%;
  position: relative;
  border-radius: 28px;
  background: linear-gradient(145deg, #9c27b0 0%, #e91e63 100%);
  overflow: hidden;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

.mockup-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #9c27b0 0%, #e91e63 100%);
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: normal;
  font-size: 1rem;
}

.hero-image .mockup-content {
  border-radius: 28px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: normal;
  font-size: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #9c27b0 0%, #e91e63 100%);
}

.mockup-header {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mockup-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mockup-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--white);
  text-align: center;
}

.mockup-header p {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0;
  text-align: center;
}

.mockup-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1rem 1.5rem;
}

.hero-image .mockup-links {
  padding: 0 1.25rem 1.5rem;
}

.mockup-link {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  margin-bottom: 0.75rem;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.mockup-link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.mockup-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mockup-link-text {
  flex-grow: 1;
  font-weight: 500;
}

.mockup-link-arrow {
  opacity: 0.75;
}

.mockup-footer {
  margin-top: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.75;
}

.mockup-logo {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}

/* Home Page Styles */

/* Hero Section */
.hero-section {
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gray-900), var(--gray-800));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .text-gradient {


  .hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 90%;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
  }

  .stat-item {
    display: flex;
    flex-direction: column;
  }

  .stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
  }

  .stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    margin-top: 0.25rem;
  }

  .hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-device {
    position: relative;
    z-index: 2;
  }

  .device-mockup {
    width: 280px;
    height: 560px;
    background-color: #fff;
    border-radius: 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    border: 10px solid var(--gray-900);
  }

  .device-screen {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  }

  .demo-profile {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }

  .demo-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  .demo-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
  }

  .demo-name {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .demo-bio {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 0;
  }

  .demo-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .demo-link {
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 0.5rem;
    transition: transform var(--transition-fast);
  }

  .demo-link:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.2);
  }

  .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
  }

  .shape-1 {
    width: 300px;
    height: 300px;
    background-color: rgba(99, 102, 241, 0.4);
    top: -100px;
    right: -100px;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    background-color: rgba(244, 63, 94, 0.4);
    bottom: -50px;
    right: 100px;
  }

  .shape-3 {
    width: 150px;
    height: 150px;
    background-color: rgba(16, 185, 129, 0.4);
    bottom: 50px;
    left: -50px;
  }

  .shape-4 {
    width: 250px;
    height: 250px;
    background-color: rgba(245, 158, 11, 0.3);
    top: 50px;
    left: -100px;
  }

  /* Features Section */
  .features-section {
    padding: 5rem 0;
    background-color: #fff;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .section-title .text-gradient {


    .section-subtitle {
      font-size: var(--font-size-xl);
      color: var(--gray-600);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-card {
      padding: 2rem;
      border-radius: var(--border-radius-lg);
      background-color: var(--gray-50);
      height: 100%;
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      border-radius: var(--border-radius);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    .feature-title {
      font-size: var(--font-size-xl);
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .feature-text {
      color: var(--gray-600);
      margin-bottom: 0;
    }

    /* How It Works Section */
    .how-it-works-section {
      padding: 5rem 0;
      background-color: var(--gray-50);
    }

    .steps-container {
      position: relative;
      max-width: 800px;
      margin: 4rem auto 0;
      padding: 0 1rem;
    }

    .step-connector {
      position: absolute;
      left: 50%;
      top: 50px;
      bottom: 50px;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
      transform: translateX(-50%);
    }

    .step-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 5rem;
      position: relative;
    }

    .step-item:last-child {
      margin-bottom: 0;
    }

    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: var(--font-size-lg);
      flex-shrink: 0;
      z-index: 1;
    }

    .step-content {
      flex: 1;
      padding: 0 2rem;
    }

    .step-title {
      font-size: var(--font-size-xl);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .step-text {
      color: var(--gray-600);
      margin-bottom: 0;
    }

    .step-icon {
      width: 60px;
      height: 60px;
      border-radius: var(--border-radius);
      background-color: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      color: var(--primary-color);
      flex-shrink: 0;
    }

    /* Themes Section */
    .themes-section {
      padding: 5rem 0;
      background-color: #fff;
    }

    .themes-showcase {
      margin-top: 3rem;
      position: relative;
    }

    .theme-carousel {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .theme-card {
      width: 250px;
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    }

    .theme-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .theme-preview {
      height: 350px;
      padding: 1rem;
      display: flex;
      flex-direction: column;
    }

    .theme-card.theme-classic .theme-preview {
      background-color: #fff;
      color: #333;
    }

    .theme-card.theme-dark .theme-preview {
      background-color: #1f2937;
      color: #f3f4f6;
    }

    .theme-card.theme-gradient .theme-preview {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
    }

    .theme-card.theme-minimal .theme-preview {
      background-color: #f9fafb;
      color: #111827;
    }

    .preview-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    .preview-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem;
    }

    .preview-title {
      width: 120px;
      height: 20px;
      border-radius: 4px;
      background-color: rgba(0, 0, 0, 0.1);
      margin-bottom: 0.5rem;
    }

    .preview-subtitle {
      width: 150px;
      height: 12px;
      border-radius: 4px;
      background-color: rgba(0, 0, 0, 0.1);
    }

    .preview-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .preview-link {
      height: 40px;
      border-radius: 8px;
      background-color: rgba(0, 0, 0, 0.1);
    }

    .theme-info {
      padding: 1rem;
      border-top: 1px solid var(--gray-200);
    }

    .theme-info h4 {
      font-size: var(--font-size-lg);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .theme-info p {
      color: var(--gray-600);
      font-size: var(--font-size-sm);
      margin-bottom: 0;
    }

    /* Pricing Section */
    .pricing-section {
      padding: 5rem 0;
      background-color: var(--gray-50);
    }

    .pricing-card {
      height: 100%;
      background-color: #fff;
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform var(--transition-normal), box-shadow var(--transition-normal);
      position: relative;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }

    .pricing-card.pricing-popular {
      transform: scale(1.05);
      border: 2px solid var(--primary-color);
      z-index: 2;
    }

    .pricing-card.pricing-popular:hover {
      transform: translateY(-10px) scale(1.05);
    }

    .popular-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      padding: 0.25rem 0.75rem;
      border-radius: var(--border-radius-full);
      font-size: var(--font-size-xs);
      font-weight: 600;
    }

    .pricing-header {
      padding: 2rem;
      text-align: center;
      border-bottom: 1px solid var(--gray-200);
    }

    .pricing-title {
      font-size: var(--font-size-xl);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .pricing-price {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 0.25rem;
    }

    .currency {
      font-size: var(--font-size-xl);
      font-weight: 600;
      color: var(--gray-700);
    }

    .amount {
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      color: var(--gray-900);
    }

    .period {
      font-size: var(--font-size-sm);
      color: var(--gray-500);
      align-self: flex-end;
      margin-bottom: 0.5rem;
    }

    .pricing-body {
      padding: 2rem;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
      color: var(--gray-700);
    }

    .pricing-features li i {
      margin-right: 0.75rem;
      color: var(--success-color);
    }

    .pricing-features li.disabled {
      color: var(--gray-400);
    }

    .pricing-features li.disabled i {
      color: var(--gray-400);
    }

    .pricing-footer {
      padding: 0 2rem 2rem;
    }

    /* FAQ Section */
    .faq-section {
      padding: 5rem 0;
      background-color: #fff;
    }

    .faq-container {
      max-width: 800px;
      margin: 3rem auto 0;
    }

    .faq-item {
      border-bottom: 1px solid var(--gray-200);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.5rem 0;
      cursor: pointer;
    }

    .faq-question h4 {
      margin-bottom: 0;
      font-size: var(--font-size-lg);
      font-weight: 600;
    }

    .faq-icon {
      color: var(--primary-color);
      font-size: var(--font-size-lg);
      transition: transform var(--transition-fast);
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height var(--transition-fast);
    }

    .faq-item.active .faq-answer {
      height: auto;
      padding-bottom: 1.5rem;
    }

    /* CTA Section */
    .cta-section {
      padding: 6rem 0;
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      color: #fff;
      text-align: center;
    }

    .cta-title {
      font-size: var(--font-size-4xl);
      font-weight: 800;
      margin-bottom: 1rem;
      color: #fff;
    }

    .cta-subtitle {
      font-size: var(--font-size-xl);
      opacity: 0.9;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2rem;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      gap: 1rem;
    }

    .cta-section .btn-outline {
      color: #fff;
      border-color: #fff;
    }

    .cta-section .btn-outline:hover {
      background-color: #fff;
      color: var(--primary-color);
    }

    .cta-section .btn-primary {
      background-color: #fff;
      color: var(--primary-color);
    }

    .cta-section .btn-primary:hover {
      background-color: var(--gray-100);
      color: var(--primary-color);
    }

    /* Text Gradient */
    .text-gradient {
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }
}

/* ===========================
   MODERN THEMES SECTION STYLES 
   =========================== */

.themes-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.themes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.theme-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.theme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.theme-card:hover::before {
  opacity: 0.05;
}

.theme-preview {
  padding: 30px 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: transparent;
}

.theme-preview-phone {
  width: 200px;
  height: 360px;
  background: #000;
  border-radius: 25px;
  padding: 2px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: none;
  overflow: hidden;
  outline: none;
}

.theme-preview-phone::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 10;
}

.theme-preview-screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  padding: 8px;
  border: none;
  box-sizing: border-box;
  margin: 0;
  outline: none;
  box-shadow: none;
}

/* Theme Variations */
.dark-phone .theme-preview-screen {
  background: #1a1a1a;
  color: white;
}

.gradient-phone {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.minimal-phone .theme-preview-screen {
  background: #f8f9fa;
}

.neon-phone {
  background: #0a0a0a;
}

.neon-phone .theme-preview-screen {
  background: #111;
  color: #00ff88;
  border: 1px solid #00ff88;
}

.nature-phone {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}

.preview-header {
  text-align: center;
  margin-bottom: 12px;
  margin-top: 8px;
}

.preview-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  font-size: 14px;
}

.dark-avatar {
  background: #4a5568;
}

.gradient-avatar {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.minimal-avatar {
  background: #718096;
}

.neon-avatar {
  background: #00ff88;
  color: #111;
}

.nature-avatar {
  background: #48bb78;
}

.preview-name {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
}

.preview-bio {
  font-size: 9px;
  opacity: 0.7;
  line-height: 1.2;
}

.preview-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.preview-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 9px;
  transition: all var(--transition-fast);
  min-height: 24px;
}

.classic-link {
  background: #f7fafc;
  border: 1px solid #e2e8f0;
}

.dark-link {
  background: #2d3748;
  color: white;
}

.gradient-link {
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(254, 202, 87, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.minimal-link {
  background: white;
  border: 1px solid #e2e8f0;
}

.neon-link {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid #00ff88;
  color: #00ff88;
}

.nature-link {
  background: rgba(72, 187, 120, 0.1);
  border: 1px solid #48bb78;
  color: #2f855a;
}

.theme-info {
  padding: 25px;
  text-align: center;
  border-top: none;
  position: relative;
  z-index: 2;
  background: white;
}

.theme-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
}

.theme-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.theme-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 15px;
}

.theme-features {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-tag {
  background: var(--primary-bg);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.themes-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.themes-cta h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gray-900);
}

.themes-cta .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
}

/* ===========================
   MODERN PRICING SECTION STYLES 
   =========================== */

.pricing-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.pricing-toggle {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
}

.discount-badge {
  background: var(--success-color);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
}

.toggle-switch input {
  display: none;
}

.switch-slider {
  position: relative;
  display: block;
  width: 50px;
  height: 26px;
  background: var(--gray-300);
  border-radius: 13px;
  cursor: pointer;
  transition: background var(--transition-normal);
}

.switch-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-normal);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch input:checked + .switch-slider {
  background: var(--primary-color);
}

.toggle-switch input:checked + .switch-slider::before {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.popular-plan {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.popular-plan:hover {
  transform: scale(1.05) translateY(-8px);
}

.plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  border-radius: 0 0 12px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-badge:not(.popular) {
  background: var(--gray-100);
  color: var(--gray-700);
}

.plan-badge.popular {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.pricing-header {
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.plan-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.pricing-subtitle {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 25px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-700);
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.period {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-600);
}

.price-note {
  font-size: 12px;
  color: var(--gray-500);
}

.pricing-body {
  padding: 0 30px 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.feature-included .feature-icon {
  background: var(--success-color);
  color: white;
}

.feature-disabled .feature-icon {
  background: var(--gray-300);
  color: var(--gray-600);
}

.feature-text {
  flex: 1;
}

.feature-text strong {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.feature-text span {
  font-size: 13px;
  color: var(--gray-600);
}

.feature-disabled .feature-text {
  opacity: 0.6;
}

.pricing-footer {
  padding: 0 30px 40px;
}

.money-back {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 15px;
}

.pricing-faq {
  margin-top: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item-small {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item-small h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.faq-item-small p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   MODERN FAQ SECTION STYLES 
   =========================== */

.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.faq-stat {
  text-align: center;
}

.faq-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.faq-stat .stat-label {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 5px;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.faq-category {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-category:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.faq-category.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: var(--gray-50);
}

.question-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.question-content {
  flex: 1;
}

.question-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--gray-900);
}

.question-tag {
  background: var(--primary-bg);
  color: var(--primary-color);
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  background: var(--primary-color);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.answer-content {
  padding: 0 25px 25px;
}

.answer-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 15px;
}

.answer-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.answer-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.answer-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.answer-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0;
}

.feature-group h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-comparison {
  margin: 15px 0;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
}

.plan-feature.included {
  color: var(--gray-700);
}

.plan-feature i {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  background: var(--success-color);
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}

.analytics-card {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.analytics-card i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.analytics-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-900);
}

.analytics-card p {
  font-size: 11px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.steps-list {
  margin: 20px 0;
}

.step {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.step-content p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
}

.support-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 20px 0;
}

.support-channel {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

.support-channel i {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.support-channel h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--gray-900);
}

.support-channel p {
  font-size: 11px;
  color: var(--gray-600);
  margin: 0 0 8px;
  line-height: 1.4;
}

.availability {
  background: var(--success-color);
  color: white;
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
}

.faq-bottom {
  text-align: center;
}

.faq-cta {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.faq-cta p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 30px;
}

.cta-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===========================
   MODERN FOOTER STYLES 
   =========================== */

.footer-main {
  background: var(--gray-900);
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}

.footer-gradient-bg {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  position: relative;
}

.footer-gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.newsletter-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.newsletter-text p {
  font-size: 16px;
  color: var(--gray-400);
  margin: 0;
}

.newsletter-form {
  flex: 1;
  max-width: 400px;
}

.newsletter-subscribe .input-group {
  display: flex;
  gap: 0;
  margin-bottom: 10px;
}

.newsletter-subscribe .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  color: white;
  border-radius: 12px 0 0 12px;
  padding: 15px 20px;
  font-size: 14px;
}

.newsletter-subscribe .form-control::placeholder {
  color: var(--gray-400);
}

.newsletter-subscribe .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary-color);
  box-shadow: none;
}

.newsletter-subscribe .btn {
  border-radius: 0 12px 12px 0;
  padding: 15px 25px;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.newsletter-privacy small {
  color: var(--gray-500);
  font-size: 12px;
}

.newsletter-privacy i {
  color: var(--success-color);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0;
}

.footer-main-content {
  padding: 80px 0 60px;
}

.footer-brand {
  margin-bottom: 40px;
}

.brand-logo {
  margin-bottom: 20px;
}

.brand-tagline {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
  margin-top: 8px;
}

.brand-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-400);
  margin-bottom: 30px;
}

.footer-stats {
  display: flex;
  gap: 30px;
}

.footer-stats .stat-item {
  text-align: center;
}

.footer-stats .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.footer-stats .stat-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-column {
  
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading i {
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links a i {
  font-size: 12px;
  opacity: 0.5;
}

.footer-bottom {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-left {
  flex: 1;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--gray-500);
}

.copyright i {
  color: var(--secondary-color);
  font-size: 16px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--gray-500);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.social-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transform: scale(0);
  transition: transform var(--transition-normal);
}

.social-link:hover::before {
  transform: scale(1);
}

.social-link.instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}

.social-link.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
  background: rgba(29, 161, 242, 0.1);
  color: #1da1f2;
}

.social-link.twitter::before {
  background: #1da1f2;
}

.social-link.youtube {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
}

.social-link.youtube::before {
  background: #ff0000;
}

.social-link.linkedin {
  background: rgba(0, 119, 181, 0.1);
  color: #0077b5;
}

.social-link.linkedin::before {
  background: #0077b5;
}

.social-link.discord {
  background: rgba(114, 137, 218, 0.1);
  color: #7289da;
}

.social-link.discord::before {
  background: #7289da;
}

.social-link:hover {
  color: white;
  transform: translateY(-2px);
}

.footer-features {
  display: flex;
  gap: 15px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gray-400);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-badge i {
  color: var(--success-color);
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile theme adjustments */
@media (max-width: 1024px) {
  .theme-preview {
    height: 350px;
    padding: 20px 15px;
  }
  
  .theme-preview-phone {
    width: 180px;
    height: 320px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .themes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .theme-preview {
    height: 300px;
    padding: 15px 10px;
  }
  
  .theme-preview-phone {
    width: 160px;
    height: 280px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .popular-plan {
    transform: none;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-newsletter {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .footer-right {
    align-items: center;
  }
  
  .social-section {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-features {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Auth Footer Styles */
.footer-auth {
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-auth .footer-content {
  text-align: center;
}

.footer-auth .copyright {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.footer-auth .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-auth .footer-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-auth .footer-link:hover {
  color: #495057;
}

@media (max-width: 768px) {
  .footer-auth .footer-links {
    gap: 1rem;
  }
}

/* Profile Picture Section */
.profile-picture-section {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.current-picture {
  flex-shrink: 0;
}

.current-picture img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
}

.profile-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  border: 3px solid #e5e7eb;
}

.picture-upload {
  flex: 1;
}

.picture-upload h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.hint-text {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.upload-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .profile-picture-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .picture-upload {
    width: 100%;
  }
}

/* Loading Animation */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-dialog {
  background: white;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content {
  padding: 0;
}

.modal-header {
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.btn-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s;
}

.btn-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.modal-body {
  padding: 1rem 1.5rem 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.account-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.account-action {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
}

.account-action.danger-zone {
  border-color: #fecaca;
  background: #fef2f2;
}

.account-action h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.account-action p {
  margin: 0 0 1rem 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.danger-zone h4 {
  color: #dc2626;
}

.danger-zone p {
  color: #991b1b;
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95%;
    margin: 1rem;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .account-actions {
    gap: 1rem;
  }
  
  .account-action {
    padding: 1rem;
  }
}

/* Password Requirements */
.password-strength {
  margin: 1rem 0;
}

.strength-meter {
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.strength-bar {
  height: 100%;
  width: 0%;
  transition: width 0.3s, background-color 0.3s;
  border-radius: 3px;
}

.strength-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.password-requirements {
  margin: 1rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.password-requirements p {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.password-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-requirements li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: #6b7280;
  display: flex;
  align-items: center;
}

.password-requirements li::before {
  content: '✗';
  margin-right: 0.5rem;
  color: #ef4444;
  font-weight: bold;
}

.password-requirements li.passed {
  color: #10b981;
}

.password-requirements li.passed::before {
  content: '✓';
  color: #10b981;
}

/* Form Actions */
.form-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.form-actions .btn {
  min-width: 150px;
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  max-width: 500px;
  z-index: 10000;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification-success {
  border-left: 4px solid #10b981;
}

.notification-error {
  border-left: 4px solid #ef4444;
}

.notification-content {
  flex: 1;
  margin-right: 1rem;
}

.notification-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-close:hover {
  color: #374151;
}

/* Özel URL Bölümü Tasarımı */
.custom-url-section {
  position: relative;
  margin-bottom: 2rem;
}

.custom-url-section .form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.premium-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.premium-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.url-help-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--info-rgb), 0.1);
  border: 1px solid rgba(var(--info-rgb), 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--info-color);
  font-size: 0.875rem;
}

.url-help-text.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #059669;
}

.url-help-text.success code {
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  padding: 0.125rem 0.25rem;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-weight: 600;
}

.url-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.url-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.url-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  color: var(--white);
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.url-content {
  flex: 1;
  min-width: 0;
}

.url-display {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  word-break: break-all;
}

.url-base {
  color: var(--gray-600);
}

.url-username {
  color: var(--primary-color);
  background: rgba(var(--primary-rgb), 0.1);
  padding: 0.125rem 0.375rem;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
}

.url-status {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.url-status.active {
  color: var(--success-color);
}

.url-status.inactive {
  color: var(--warning-color);
}

.url-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-copy,
.btn-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: 8px;
  color: var(--gray-600);
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.btn-copy:hover,
.btn-preview:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.url-help-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--info-rgb), 0.1);
  border: 1px solid rgba(var(--info-rgb), 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--info-color);
  font-size: 0.875rem;
}

.premium-upgrade-card {
  background: linear-gradient(135deg, #fff8e1, #f3e5f5);
  border: 2px solid #e1bee7;
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.premium-upgrade-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff8c00, #9c27b0);
}

.upgrade-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.upgrade-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ffd700, #ff8c00);
  border-radius: 16px;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
}

.upgrade-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.upgrade-content p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

.reserved-url {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.reserved-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--success-color);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.reserved-info {
  flex: 1;
}

.reserved-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.reserved-url-text {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--success-color);
  font-family: 'Courier New', monospace;
  background: rgba(76, 175, 80, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.reserved-hint {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--gray-600);
  font-size: 0.8rem;
  font-style: italic;
}

.upgrade-action {
  text-align: center;
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #9c27b0, #e91e63);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(156, 39, 176, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(156, 39, 176, 0.4);
  color: var(--white);
  text-decoration: none;
}

.btn-premium:hover::before {
  left: 100%;
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .url-preview {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .url-actions {
    justify-content: center;
  }
  
  .upgrade-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .reserved-url {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
  
  .custom-url-container {
    padding: 1rem;
  }
  
  .premium-upgrade-card {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .url-display {
    font-size: 1rem;
  }
  
  .btn-premium {
    width: 100%;
    justify-content: center;
  }
}