/* Split Duo Design - Modern Tech Startup Theme */

:root {
  --color-dark: #1a1d23;
  --color-blue: #03a9f4;
  --color-cyan: #00ffff;
  --color-white: #ffffff;
  --color-gray-100: #f7f7f7;
  --color-gray-200: #e5e5e5;
  --color-gray-300: #d3d3d3;
  --color-gray-600: #666666;
  --color-gray-800: #333333;

  --gradient-primary: linear-gradient(135deg, var(--color-blue) 0%, var(--color-cyan) 100%);
  --gradient-dark: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray-800) 100%);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 19px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 8px 31px rgba(15, 23, 42, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-600);
  background: var(--color-white);
  overflow-x: hidden;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-cyan);
}

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

.logo-img {
  max-height: 46px;
  width: auto;
  display: block;
}

/* Navigation */
.navbar {
  background: var(--gradient-dark) !important;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-white) !important;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--color-cyan) !important;
}

.btn-cta {
  background: var(--gradient-primary);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.dropdown-menu-dark {
  background: var(--color-gray-800);
  border: none;
  box-shadow: var(--shadow-lg);
}

.dropdown-item {
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-cyan) !important;
}

/* Hero Split Section */
.hero-split {
  min-height: 100vh;
  display: flex;
  padding-top: 80px;
}

.hero-left {
  flex: 1;
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.hero-right {
  flex: 1;
  background: var(--color-gray-100);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-cyan);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  color: var(--color-white);
  margin: 1.5rem 0 1rem;
  line-height: 1.1;
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.hero-features {
  margin-bottom: 2rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-item i {
  color: var(--color-cyan);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.hero-cta .btn {
  margin-bottom: 1rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-image {
  width: 100%;
  border-radius: 21px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-floating-card {
  position: absolute;
  background: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 9px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  pointer-events: none;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card::before {
  position: absolute;
  pointer-events: none;
}

.hero-floating-card i {
  font-size: 2rem;
  color: var(--color-blue);
}

.card-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
}

.card-label {
  font-size: 0.75rem;
  color: var(--color-gray-600);
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 30%;
  left: -5%;
  animation-delay: 1s;
}

.card-3 {
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styling */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-blue);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* Split Content Areas */
.split-content-left {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 100%);
  border-radius: 21px 0 0 18px;
}

.split-content-right {
  padding: 2rem;
  background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.05) 100%);
  border-radius: 0 21px 19px 0;
}

/* Split Cards */
.split-card-left, .split-card-right, .split-card-featured {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.split-card-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  pointer-events: none;
}

.split-card-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
  pointer-events: none;
}

.split-card-left:hover, .split-card-right:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.split-card-featured {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.split-card-featured * {
  color: var(--color-white);
}

/* Feature Cards */
.feature-card {
  text-align: center;
}

.feature-icon {
  width: 77px;
  height: 77px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.feature-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Service Cards */
.service-card {
  position: relative;
  height: 100%;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 15px 18px 0 0;
  height: 250px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-overlay::before {
  position: absolute;
  pointer-events: none;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay i {
  font-size: 3rem;
  color: var(--color-cyan);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.service-description {
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-link {
  color: var(--color-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--color-cyan);
  transform: translateX(5px);
}

/* Pricing Cards */
.pricing-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--color-blue);
}

.featured-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 53px;
  font-weight: 600;
  font-size: 0.875rem;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.pricing-header {
  padding: 2rem 2rem 1rem;
}

.pricing-plan-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.currency {
  font-size: 1.5rem;
}

.period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-gray-600);
}

.pricing-description {
  color: var(--color-gray-600);
}

.pricing-features {
  flex: 1;
  padding: 1rem 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features i {
  margin-right: 0.5rem;
}

.pricing-card .btn {
  margin: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-quote {
  flex: 1;
  font-style: italic;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-gray-200);
}

.author-image {
  width: 62px;
  height: 57px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-blue);
}

.author-name {
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* Team Cards */
.team-card {
  text-align: center;
  height: 100%;
}

.team-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
  margin-bottom: 1.5rem;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-image {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.team-overlay::before {
  position: absolute;
  pointer-events: none;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  gap: 1rem;
  pointer-events: auto;
}

.team-social a {
  width: 40px;
  height: 39px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: transform 0.3s ease;
}

.team-social a:hover {
  transform: scale(1.2);
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.team-role {
  color: var(--color-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--color-gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-split-bg {
  background: var(--gradient-dark);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-split-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-icon {
  width: 58px;
  height: 62px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.stat-content .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-cyan);
  margin-bottom: 0.25rem;
}

.stat-content .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* Process Cards */
.process-card, .process-step {
  text-align: center;
  position: relative;
  padding-top: 3rem;
}

.process-number {
  width: 61px;
  height: 59px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.process-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* FAQ Section */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  background: var(--color-white);
  color: var(--color-dark);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
  font-size: 1.1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

/* CTA Section */
.cta-split-bg {
  background: var(--gradient-dark);
  padding: 4rem 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-split-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-features {
  margin-top: 2rem;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature-item i {
  color: var(--color-cyan);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.cta-buttons .btn {
  min-width: 200px;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

/* Blog Cards */
.blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 51px;
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
}

.blog-badge.featured {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--color-dark);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--color-blue);
}

.blog-excerpt {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link {
  color: var(--color-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--color-cyan);
  transform: translateX(5px);
}

.featured-article {
  border: 3px solid var(--color-blue);
}

/* Article Page */
.article-hero {
  padding: 6rem 0 3rem;
  background: var(--gradient-dark);
  color: var(--color-white);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.article-category {
  background: rgba(59, 130, 246, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 52px;
}

.article-title {
  font-size: 3rem;
  color: var(--color-white);
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
}

.article-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.author-avatar {
  width: 58px;
  height: 59px;
  border-radius: 50%;
  border: 3px solid var(--color-cyan);
}

.author-details .author-name {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.author-details .author-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.article-featured-image {
  padding: 3rem 0;
  background: var(--color-gray-100);
}

.article-featured-image img {
  border-radius: 17px;
  box-shadow: var(--shadow-lg);
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-gray-600);
}

.article-body h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
  color: var(--color-dark);
}

.article-body h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--color-dark);
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-quote {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 2rem 2rem 2rem 4rem;
  border-radius: 18px;
  margin: 2rem 0;
  position: relative;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.7;
}

.article-quote::before {
  position: absolute;
  pointer-events: none;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
  color: var(--color-cyan);
  opacity: 0.5;
}

.article-image-inline {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-cta-box {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 2.5rem;
  border-radius: 19px;
  text-align: center;
}

.article-cta-box h3 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.article-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.article-tags {
  padding: 2rem 0;
  border-top: 2px solid var(--color-gray-200);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag-item {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.article-share {
  padding: 2rem 0;
  border-top: 2px solid var(--color-gray-200);
}

.share-buttons {
  display: flex;
  gap: 1rem;
}

.share-btn {
  width: 48px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.share-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-linkedin { background: #0077b5; }
.share-email { background: var(--color-gray-600); }

/* Case Study Cards */
.case-study-card {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-study-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.case-study-content {
  padding: 2rem;
  flex: 1;
}

.case-study-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 49px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.case-study-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.case-study-excerpt {
  color: var(--color-gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-study-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-gray-200);
}

.case-study-stats .stat-item {
  flex: 1;
  text-align: center;
}

.case-study-stats .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.25rem;
}

.case-study-stats .stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: var(--gradient-dark);
  color: var(--color-white);
}

.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.page-header .breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
}

.page-header .breadcrumb-item.active {
  color: var(--color-cyan);
}

.page-title {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.page-header-image {
  border-radius: 21px;
  box-shadow: var(--shadow-lg);
}

/* Service Page */
.service-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-dark);
  color: var(--color-white);
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-cyan);
  padding: 0.5rem 1rem;
  border-radius: 52px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-title {
  font-size: 3rem;
  color: var(--color-white);
  margin: 1rem 0;
}

.service-lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-highlights {
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-item i {
  color: var(--color-cyan);
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.service-hero-image {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-form .form-control, .contact-form .form-select {
  border: 2px solid var(--color-gray-200);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
}

.contact-info-icon {
  width: 52px;
  height: 47px;
  background: var(--gradient-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-info-label {
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-value {
  color: var(--color-gray-600);
  font-size: 1rem;
}

.contact-info-value a {
  color: var(--color-blue);
}

.social-links-large {
  display: flex;
  gap: 1rem;
}

.social-link-large {
  width: 51px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.social-link-large:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* About Page */
.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.grid-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.grid-item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-card, .vision-card {
  padding: 3rem;
  border-radius: 18px;
  text-align: center;
}

.mission-icon, .vision-icon {
  width: 79px;
  height: 78px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-white);
}

.mission-title, .vision-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.mission-text, .vision-text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--color-gray-600);
}

.value-card {
  text-align: center;
  height: 100%;
}

.value-icon {
  width: 71px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
}

.value-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.value-description {
  color: var(--color-gray-600);
  line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  background: var(--color-white);
  border-radius: 13px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table thead {
  background: var(--gradient-dark);
}

.comparison-table th {
  padding: 1.5rem;
  color: var(--color-white);
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--color-gray-100);
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.legal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-gray-600);
}

.legal-section h2 {
  font-size: 1.75rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.legal-content ul, .legal-content ol {
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-brand h5 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 39px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-cyan);
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--color-cyan);
  margin-right: 0.75rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--color-cyan);
}

/* Split Section Background */
.split-section-bg {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
}

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

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

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Utilities */
.text-muted {
  color: var(--color-gray-600) !important;
}

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

/* Responsive Design */
@media (max-width: 991px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left, .hero-right {
    clip-path: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title, .article-title, .service-title {
    font-size: 2.5rem;
  }

  .hero-floating-card {
    display: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title, .article-title, .service-title {
    font-size: 2rem;
  }

  .split-content-left, .split-content-right {
    border-radius: 17px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .case-study-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
}
