/* ===========================
   Reset & Base Styles
   =========================== */
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #f093fb;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===========================
   Utility Classes
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-icon svg {
    width: 100%;
    height: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	line-height: 1;
}

.logo-mark {
	width: clamp(72px, 6vw + 24px, 156px);
	height: auto;
	flex: 0 0 auto;
	display: block;
	object-fit: contain;
}

.logo-word {
	display: none;
	font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
	letter-spacing: 0.2px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-brand {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.logo-dot {
	color: var(--secondary);
}

.logo-pro {
	color: var(--text-dark);
	opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    display: block;
}

.nav-menu > li > a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-menu > li > a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu > li > a:not(.btn-nav):hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle::before {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-toggle::before {
    transform: rotate(180deg);
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    padding: 0.75rem 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 1rem;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    display: block;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
    width: 220px;
    height: 220px;
    padding: 1.5rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-text {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.25;
}

.card-1 {
    top: 8%;
    left: 12%;
    animation-delay: 0s;
    z-index: 4;
}

.card-2 {
    top: 8%;
    right: 8%;
    animation-delay: 1s;
    z-index: 3;
}

.card-3 {
    bottom: 12%;
    left: 18%;
    animation-delay: 2s;
    z-index: 2;
}

.card-4 {
    bottom: 12%;
    right: 12%;
    animation-delay: 3s;
    z-index: 1;
}

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

/* ===========================
   Section Styles
   =========================== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon svg {
    width: 100%;
    height: 100%;
}

.section-icon-contact {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.section-icon-contact svg {
    width: 100%;
    height: 100%;
}

.contact-info h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================
   About Section
   =========================== */
.about {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.profile-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
}

.profile-image {
    width: 220px;
    height: 220px;
    margin: -0.75rem auto 2.5rem;
    position: relative;
    border-radius: 50%;
    padding: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.05);
}

.profile-image svg {
    width: 100%;
    height: 100%;
}

.profile-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.75rem;
}

.profile-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    opacity: 0.95;
}

.profile-experience {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

.profile-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.profile-linkedin:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-linkedin svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

/* ===========================
   Services Section
   =========================== */
.services {
    background: var(--bg-light);
}

.services .container {
    max-width: 1400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

.service-price {
    font-size: 1.125rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-price strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-description {
    font-style: italic;
    color: var(--text-light);
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
    margin-bottom: 0;
}

/* ===========================
   How We Work Section
   =========================== */
.how-we-work {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-medium);
    font-size: 1.05rem;
}

/* ===========================
   Why Choose Section
   =========================== */
.why-choose {
    background: var(--bg-light);
}

.why-choose .container {
    max-width: 1400px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}


.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    min-height: 280px;
}

.testimonial {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary);
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(24px);
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.testimonial.fade-out {
    opacity: 0;
    transform: translateY(-24px);
    pointer-events: none;
    z-index: 1;
}

.testimonial-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.testimonial-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author {
    color: var(--text-medium);
    font-weight: 600;
    margin: 0;
}

.testimonial-author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-text {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.testimonial-author-name {
    color: var(--text-medium);
    font-weight: 600;
    margin: 0;
    font-size: 1.05rem;
}

.testimonial-author-position {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0077b5;
    color: white;
    transition: var(--transition);
}

.linkedin-link:hover {
    background: #005885;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonials-dots .dot:hover {
    background: var(--primary);
    opacity: 0.7;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.contact-info .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.125rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item a {
    color: white;
    border-bottom: 2px solid transparent;
}

.contact-item a:hover {
    border-bottom-color: white;
}

.company-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.company-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.company-info p:last-child {
    margin-bottom: 0;
}

.contact-visual {
    position: relative;
    height: 400px;
}

.contact-decoration {
    position: relative;
    width: 100%;
    height: 100%;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
    animation: float 6s ease-in-out infinite 1s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 30%;
    animation: float 7s ease-in-out infinite 2s;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.company-details {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer a {
    color: white;
    border-bottom: 1px solid transparent;
}

.footer a:hover {
    border-bottom-color: white;
}

/* ===========================
   Privacy Policy Page
   =========================== */
.privacy-policy {
    padding: 10rem 0 6rem;
    background: var(--bg-white);
    margin-top: 70px;
}

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

.privacy-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.privacy-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content ul li {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-content a:hover {
    color: var(--primary-dark);
}

/* ===========================
   Service Detail Pages
   =========================== */
.service-detail-hero {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #f6f9fc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    text-align: center;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
    margin-top: 3rem;
    position: relative;
}

.two-column-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        #e5e7eb 5%, 
        #e5e7eb 95%, 
        transparent 100%);
    transform: translateX(-50%);
}

.two-column-grid > div {
    padding: 0 1rem;
}

.section-subtitle {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-detail-content {
    padding: 6rem 0;
    background: var(--bg-light);
}

.content-block {
    background: white;
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.content-block.wide {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 5rem;
}

@media (min-width: 1400px) {
    .content-block.wide {
        max-width: 1600px;
    }
}

.content-block h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.content-block .intro-text {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.service-detail-features {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item svg {
    width: 40px;
    height: 40px;
    margin-top: 0.25rem;
}

.feature-item > div {
    min-width: 0;
}

.feature-item h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.pricing-card {
    background: var(--bg-light);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    transform: scale(1.05);
}

.pricing-card.featured .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.price .currency {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 1.75rem;
}

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

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.benefits-list.single-column {
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: start;
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item svg {
    width: 40px;
    height: 40px;
    margin-top: 0.25rem;
}

.benefit-item > div {
    min-width: 0;
}

.benefit-item h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.cta-block {
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.cta-block h2 {
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cta-block p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing Cards Grid */
.comparison-section {
    margin-top: 2rem;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card-new {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.pricing-card-new.featured {
    border-color: var(--primary);
    border-width: 3px;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.pricing-card-new.featured:hover {
    box-shadow: 0 16px 50px rgba(99, 102, 241, 0.25);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pricing-amount {
    margin: 1rem 0 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-number.custom {
    font-size: 1.5rem;
    font-weight: 600;
}

.price-period {
    font-size: 1rem;
    color: var(--text-medium);
}

.pricing-seats {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.pricing-features .check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--bg-light);
    color: var(--primary);
    text-align: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.btn-pricing:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.02);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-color: var(--primary);
}

.btn-pricing.primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.pricing-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-new:hover {
        transform: translateY(-4px);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Užtikrina, kad ilgi žodžiai būtų suskaidyti mobilioje versijoje */
    h1, h2, h3 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .service-detail-hero {
        padding: 8rem 0 5rem;
    }

    .content-block.wide {
        padding: 3rem 2rem;
    }

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .two-column-grid::before {
        display: none;
    }

    .two-column-grid > div {
        padding: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .logo-mark {
        width: clamp(96px, 8vw + 32px, 180px);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1.5rem;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Dropdown */
    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-toggle::before {
        float: right;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0;
        background: var(--bg-light);
        border-radius: var(--radius-sm);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }

    .nav-item-dropdown.active .dropdown-toggle::before {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
        background: white;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-icon {
        width: 40px;
        height: 40px;
    }

    .section-icon-contact {
        width: 40px;
        height: 40px;
    }

    .services-grid,
    .steps,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }

    .testimonial {
        padding: 1.5rem 1.75rem;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }

    .testimonial-text {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    .testimonial-author-section {
        justify-content: center;
    }

    .testimonial-author-details {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonials-slider {
        min-height: 320px;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    /* Papildomas užtikrinimas mažiems ekranams */
    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .logo-mark {
        width: clamp(100px, 9vw + 35px, 200px);
    }

    .container {
        padding: 0 1rem;
    }

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

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .testimonial {
        padding: 1.25rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }

    .testimonial-author-name {
        font-size: 0.95rem;
    }

    .testimonial-author-position {
        font-size: 0.875rem;
    }

    .testimonials-slider {
        min-height: 340px;
    }
}

/* ===========================
   Language Switcher
   =========================== */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary) !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary);
}

.lang-btn.active {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary);
}

.lang-btn.active:hover {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary);
}
