:root {
  /* UK Flag Color Palette */
  --uk-blue: #012169;
  --uk-blue-dark: #001a57;
  --uk-blue-light: #1e3a8a;
  --uk-red: #C8102E;
  --uk-red-dark: #a00d25;
  --uk-red-light: #e63950;
  --uk-white: #ffffff;
  
  /* Primary Colors */
  --primary: #012169;
  --primary-dark: #001a57;
  --primary-light: #1e3a8a;
  --secondary: #C8102E;
  --accent: #1e3a8a;
  
  /* UK Flag Gradient - Blue to Red */
  --accent-gradient: linear-gradient(135deg, #012169 0%, #1e3a8a 50%, #C8102E 100%);
  --accent-gradient-alt: linear-gradient(135deg, #C8102E 0%, #012169 50%, #1e3a8a 100%);
  --accent-gradient-vertical: linear-gradient(180deg, #012169 0%, #C8102E 100%);
  
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-gradient: linear-gradient(135deg, #012169 0%, #C8102E 100%);
  
  --text: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -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);
  
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 60px 0;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 1002;
}

.logo:hover {
  transform: scale(1.03);
}

.logo-img {
  width: 210px;
  height: auto;
  transition: var(--transition);
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li {
  position: relative;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 20px;
  border-radius: 10px;
  display: inline-block;
  letter-spacing: 0;
}

/* Regular navigation links */
.site-nav a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
}

.site-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-nav a:not(.btn):hover {
  color: var(--uk-blue);
  background: rgba(1, 33, 105, 0.04);
}

.site-nav a:not(.btn):hover::after {
  width: calc(100% - 40px);
}

.site-nav a:not(.btn).active {
  /* color: var(--uk-blue); */
  /* font-weight: 600; */
  /* background: rgba(1, 33, 105, 0.06); */
}

.site-nav a:not(.btn).active::after {
  width: calc(100% - 40px);
  background: var(--uk-red);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  border-radius: 8px;
  transition: background 0.2s ease;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle:hover {
  background: rgba(1, 33, 105, 0.05);
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  margin: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: var(--uk-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--uk-red);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: none;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
}

.btn-outline {
  background: var(--accent-gradient);
  border: none;
  color: white;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.2);
  padding: 12px 24px;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--uk-blue) 0%, var(--uk-red) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-outline::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 33, 105, 0.3), 0 3px 10px rgba(200, 16, 46, 0.25);
}

.btn-outline:hover::after {
  width: 300px;
  height: 300px;
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--uk-red);
  color: var(--uk-red);
  background: rgba(200, 16, 46, 0.05);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--radius);
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.05) 0%, rgba(200, 16, 46, 0.05) 50%, rgba(30, 58, 138, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(1, 33, 105, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-sub {
  color: var(--text-muted);
  margin: 0 0 32px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-bullets {
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 15px;
  flex-wrap: wrap;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-bullets li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
}

.hero-art {
  display: grid;
  place-items: center;
  position: relative;
}

.hero-art img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Features Section */
.features {
  background: var(--bg-alt);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--uk-red);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.1) 0%, rgba(200, 16, 46, 0.1) 100%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text);
  line-height: 1.3;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

#features-title {
  margin-bottom: 60px;
}

/* Pricing Section */
.pricing {
  background: var(--bg);
}

.pricing-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  background: #fff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--uk-red);
}

.pricing-card:nth-child(2) {
  border-color: var(--uk-red);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-card:nth-child(2):hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card:nth-child(2)::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#pricing-title {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 800;
}

.price {
  font-size: 56px;
  font-weight: 900;
  margin: 16px 0 8px;
  line-height: 1;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.currency {
  font-size: 32px;
  vertical-align: super;
  margin-right: 4px;
}

.price-sub {
  color: var(--text-muted);
  margin: 0 0 32px;
  font-size: 15px;
}

.included {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: grid;
  gap: 12px;
}

.included li {
  color: var(--text);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 8px;
}

.included li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.tiny-note {
  color: var(--text-light);
  font-size: 13px;
  margin: 16px 0 0;
  line-height: 1.5;
}

/* How It Works Section */
.how {
  background: var(--bg-alt);
}

.how-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.how-steps li {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  counter-increment: step;
}

.how-steps li::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.how-steps li:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.how-steps li h3 {
  margin: 24px 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: var(--uk-blue);
}

.how-steps li p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1, 33, 105, 0.1), transparent);
  z-index: 0;
}

.reviews .container {
  position: relative;
  z-index: 1;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.review-card {
  background: #ffffff;
  border: none;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.review-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.review-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.review-card:hover::after {
  opacity: 1;
}

.review-card:nth-child(1) {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.review-card:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(200, 16, 46, 0.02) 100%);
}

.review-card:nth-child(3) {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.review-card:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(200, 16, 46, 0.02) 100%);
}

.review-card:nth-child(5) {
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.review-card:nth-child(6) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(200, 16, 46, 0.02) 100%);
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 100px;
  background: linear-gradient(135deg, rgba(1, 33, 105, 0.04) 0%, rgba(200, 16, 46, 0.04) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-family: Georgia, serif;
}

.review-card:hover::before {
  opacity: 0.7;
}

.review-rating {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.review-rating .star {
  color: #fbbf24;
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card:hover .review-rating .star {
  transform: scale(1.1) rotate(3deg);
  filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
}

.review-card blockquote {
  margin: 0 0 28px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  position: relative;
  z-index: 1;
  font-style: normal;
  flex-grow: 1;
  letter-spacing: -0.01em;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  z-index: 1;
  position: relative;
  transition: border-color 0.4s ease;
}

.review-card:hover .review-author {
  border-top-color: rgba(200, 16, 46, 0.2);
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.author-avatar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}

.review-card:hover .author-avatar {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(1, 33, 105, 0.3);
}

.review-card:hover .author-avatar::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.author-info {
  flex: 1;
}

.author-name {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.review-card:hover .author-name {
  background: linear-gradient(135deg, var(--uk-blue), var(--uk-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.author-role {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: var(--bg-alt);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--uk-red);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 24px 28px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  transition: var(--transition);
  font-family: inherit;
}

.faq-q:hover {
  color: var(--uk-red);
}

.faq-q::after {
  content: '+';
  font-size: 24px;
  color: var(--uk-red);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-q[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 28px 24px;
  color: var(--text-muted);
  line-height: 1.7;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Section */
.contact {
  background: var(--bg);
}

.text-p-center {
  text-align: center;
  margin-bottom: 60px;
  margin-top: 0;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.left-img-box {
  width: 100%;
}

.left-img-box img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  background: var(--bg-alt);
  font: inherit;
  color: var(--text);
  transition: var(--transition);
  font-size: 15px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--uk-red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-small {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

.form-small a {
  color: var(--uk-red);
  text-decoration: none;
  font-weight: 600;
}

.form-small a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 0 40px;
  gap: 40px;
  flex-wrap: wrap;
}

.company-info {
  flex: 1;
  min-width: 250px;
}

.company-info h4 {
  color: var(--text);
  margin: 0 0 20px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.company-info p {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  font-weight: 500;
}

.site-footer nav a:hover {
  color: var(--uk-red);
}

.copyright-class {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 14px;
}

/* Inner Pages Styles */
.inner-heading-box {
  text-align: center;
  background: var(--accent-gradient);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.inner-heading-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.inner-heading-box h2 {
  color: #fff !important;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
}

.inner-content-box {
  padding: 60px 200px;
  max-width: 1200px;
  margin: 0 auto;
}

.cont-main-has-inner {
  margin-bottom: 40px;
}

.cont-main-has-inner h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--text);
}

.cont-main-has-inner h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}

.cont-main-has-inner p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

.cont-main-has-inner ul {
  margin: 16px 0;
  padding-left: 24px;
}

.cont-main-has-inner li {
  margin: 8px 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.cont-main-has-inner b {
  color: var(--text);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-art {
    order: -1;
  }

  .pricing-inner {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card:nth-child(2) {
    transform: scale(1);
  }

  .pricing-card:nth-child(2):hover {
    transform: translateY(-8px);
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .left-img-box {
    order: -1;
  }

  .inner-content-box {
    padding: 60px 100px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 80px 0 30px;
    overflow-y: auto;
  }

  .site-nav.active {
    right: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 999;
    backdrop-filter: blur(4px);
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 0 20px;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    padding: 14px 18px;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    margin-bottom: 4px;
  }

  .site-nav a:not(.btn)::after {
    left: 18px;
    transform: translateX(0);
    bottom: 10px;
  }

  .site-nav a:not(.btn):hover::after,
  .site-nav a:not(.btn).active::after {
    width: 4px;
    height: 4px;
    border-radius: 50%;
  }

  .site-nav a.btn {
    margin-top: 16px;
    text-align: center;
    width: 100%;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .review-card {
    padding: 36px 28px;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .company-info {
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
  }

  .inner-content-box {
    padding: 40px 30px;
  }

  .contact-form {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 50px 0;
  }

  .hero {
    padding: 80px 0 50px;
  }

  .btn-lg,
  .btn-xl {
    padding: 14px 24px;
    font-size: 15px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .price {
    font-size: 48px;
  }

  .feature-card,
  .review-card,
  .how-steps li {
    padding: 24px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .review-card blockquote {
    font-size: 15px;
    line-height: 1.7;
  }

  .review-card::before {
    font-size: 80px;
    top: 20px;
    right: 20px;
  }

  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 16px;
    border-radius: 12px;
  }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
  .feature-card,
  .pricing-card,
  .review-card,
  .how-steps li {
    animation: fadeInUp 0.6s ease backwards;
  }

  .feature-card:nth-child(1) { animation-delay: 0.1s; }
  .feature-card:nth-child(2) { animation-delay: 0.2s; }
  .feature-card:nth-child(3) { animation-delay: 0.3s; }
  .feature-card:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
