* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--primary: #7c3aed;
--primary-dark: #5b21b6;
--secondary: #8b5cf6;
--accent: #a78bfa;
--dark: #18181b;
--darker: #0f0f1a;
--light: #ffffff;
--gray: #52525b;
--star: #fbbf24;
--primary-rgb: 124, 58, 237;
--primary-dark-rgb: 91, 33, 182;
--secondary-rgb: 139, 92, 246;
--accent-rgb: 167, 139, 250;
--dark-rgb: 24, 24, 27;
--darker-rgb: 15, 15, 26;
--glass: rgba(255, 255, 255, 0.8);
--glass-border: #e4e4e7;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
background: var(--body-bg,
radial-gradient(at 40% 20%, rgba(var(--primary-rgb), 0.2) 0px, transparent 50%),
radial-gradient(at 80% 0%, rgba(var(--accent-rgb), 0.2) 0px, transparent 50%),
radial-gradient(at 0% 50%, rgba(var(--secondary-rgb), 0.2) 0px, transparent 50%),
radial-gradient(at 80% 50%, rgba(var(--primary-rgb), 0.15) 0px, transparent 50%),
radial-gradient(at 0% 100%, rgba(var(--accent-rgb), 0.15) 0px, transparent 50%),
#ffffff
);
background-attachment: fixed;
color: var(--dark);
line-height: 1.6;
overflow-x: hidden;
}
a {
color: var(--primary);
text-decoration: none;
transition: color 0.2s ease;
}
a:hover {
color: var(--primary-dark);
} .bg-gradient {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background:
radial-gradient(ellipse 80% 50% at 20% -20%, rgba(var(--primary-rgb), 0.06) 0%, transparent 50%),
radial-gradient(ellipse 60% 40% at 80% 0%, rgba(var(--secondary-rgb), 0.05) 0%, transparent 50%),
radial-gradient(ellipse 50% 30% at 50% 100%, rgba(var(--accent-rgb), 0.04) 0%, transparent 50%),
#ffffff;
}
.floating-orb {
display: none;
}
.orb-1,
.orb-2 {
display: none;
}
@keyframes float {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
25% { transform: translate(50px, 50px) rotate(5deg); }
50% { transform: translate(0, 100px) rotate(0deg); }
75% { transform: translate(-50px, 50px) rotate(-5deg); }
} .site-header {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
z-index: 1000;
width: calc(100% - 64px);
max-width: 1200px;
}
.nav-wrapper {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 100px;
padding: 16px 32px;
transition: border-radius 0.3s ease;
}
.nav-wrapper:has(.mobile-nav.active) {
border-radius: 24px;
}
.nav-content {
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-buttons {
display: flex;
align-items: center;
}
.mobile-nav {
display: none;
padding: 20px 0 0;
border-top: 1px solid var(--glass-border);
margin-top: 16px;
}
.mobile-nav.active {
display: block;
}
.mobile-nav-links {
display: flex;
flex-direction: column;
list-style: none;
margin: 0;
padding: 0.5rem 0;
}
.mobile-nav-links li {
margin: 0;
}
.mobile-nav-links a {
display: block;
padding: 0.6rem 1rem;
color: var(--dark);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.3s ease;
text-align: center;
}
.mobile-nav-links a:hover {
color: var(--primary);
}
.mobile-nav-buttons {
text-align: center;
padding: 0.5rem 0;
}
.mobile-nav-buttons .nav-cta {
display: inline-block;
}
.site-logo {
display: flex;
align-items: center;
}
.site-logo img,
.custom-logo {
max-height: 50px;
width: auto;
display: block;
}
.site-logo a {
display: block;
line-height: 0;
}
.logo {
font-size: 1.75rem;
font-weight: 800;
color: var(--primary);
letter-spacing: -0.02em;
text-decoration: none;
transition: opacity 0.3s ease;
}
.logo:hover {
opacity: 0.8;
color: var(--primary);
}
.nav-links {
display: flex;
gap: 40px;
list-style: none;
margin: 0;
padding: 0;
}
.nav-links li {
margin: 0;
}
.nav-links a {
color: var(--gray);
text-decoration: none;
font-weight: 500;
font-size: 0.95rem;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--primary);
}
.nav-links a:focus {
color: var(--primary);
outline: 2px solid var(--primary);
outline-offset: 2px;
}
.nav-cta:focus {
outline: 2px solid var(--primary);
outline-offset: 2px;
} a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
outline: 2px solid var(--primary);
outline-offset: 2px;
}
.nav-cta {
background: var(--primary);
color: white !important;
padding: 0.75rem 1.75rem;
border-radius: 100px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: all 0.3s ease;
box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.3);
white-space: nowrap;
}
.nav-cta:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
} .mobile-menu-btn {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 5px;
}
.mobile-menu-btn span {
width: 25px;
height: 2px;
background: var(--dark);
transition: all 0.3s ease;
display: block;
}
.site-header.toggled .mobile-menu-btn span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.site-header.toggled .mobile-menu-btn span:nth-child(2) {
opacity: 0;
}
.site-header.toggled .mobile-menu-btn span:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.site-header.toggled .nav-wrapper {
border-radius: 24px;
} .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 2rem;
} .hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 160px 5% 4rem;
position: relative;
text-align: center;
}
.hero-content {
text-align: center;
max-width: 900px;
}
.hero-badge {
display: inline-block;
background: var(--primary);
padding: 8px 20px;
border-radius: 100px;
font-size: 0.875rem;
font-weight: 600;
color: var(--light);
margin-bottom: 32px;
}
.hero h1 {
font-size: clamp(3rem, 7vw, 5rem);
font-weight: 800;
line-height: 1.1;
margin-bottom: 1.5rem;
letter-spacing: -0.03em;
color: var(--dark);
}
.hero h1 .gradient-text {
color: var(--primary);
}
.hero p {
font-size: 1.25rem;
color: var(--gray);
max-width: 600px;
margin: 0 auto 2.5rem;
line-height: 1.8;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.hero-image-wrapper {
margin-top: 3rem;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
.hero-image {
width: 100%;
height: auto;
border-radius: 24px;
box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
}
.trust-badges {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: center;
margin-top: 3rem;
}
.trust-badge {
display: flex;
align-items: center;
gap: 0.5rem;
color: var(--gray);
font-size: 0.9rem;
font-weight: 500;
}
.btn-primary {
background: var(--primary);
color: white;
padding: 1rem 2.5rem;
border-radius: 100px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.3);
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-primary:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
color: white;
}
.btn-secondary {
background: white;
border: 1px solid var(--glass-border);
color: var(--dark);
padding: 1rem 2.5rem;
border-radius: 100px;
text-decoration: none;
font-weight: 600;
font-size: 1rem;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.btn-secondary:hover {
border-color: var(--primary);
color: var(--primary);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.1);
} .wp-block-search__button,
.wp-element-button,
.wp-block-button__link {
background: var(--primary);
color: white !important;
padding: 0.75rem 1.5rem;
border-radius: 50px;
border: none;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 25px rgba(var(--primary-rgb), 0.3);
}
.wp-block-search__button:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.4);
color: white !important;
}
.wp-block-search {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.wp-block-search__input {
background: #f4f4f5;
border: 1px solid var(--glass-border);
color: var(--dark);
padding: 0.75rem 1rem;
border-radius: 50px;
font-size: 1rem;
flex: 1;
min-width: 200px;
}
.wp-block-search__input:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.2);
}
.wp-block-search__input::placeholder {
color: var(--gray);
} .stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
max-width: 800px;
margin: 4rem auto 0;
padding: 2rem;
}
.stat-item {
text-align: center;
}
.stat-number {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary);
}
.stat-label {
color: var(--gray);
font-size: 0.9rem;
margin-top: 0.25rem;
} .stats-section {
padding: 60px 5%;
}
.stats-section .stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 40px;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}
.stats-section .stat-item {
text-align: center;
}
.stats-section .stat-item h3 {
font-size: 4rem;
font-weight: 800;
color: var(--primary);
line-height: 1;
margin-bottom: 12px;
}
.stats-section .stat-item p {
color: var(--gray);
font-size: 1rem;
font-weight: 500;
} .services {
padding: 3rem 5%;
position: relative;
text-align: center;
}
.section-header {
text-align: center;
margin: 0 auto 3rem;
display: flex;
flex-direction: column;
align-items: center;
}
.section-tag {
color: var(--primary);
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.15em;
margin-bottom: 1rem;
display: block;
}
.section-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary);
padding: 0.4rem 1rem;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1rem;
}
.section-header h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 1rem;
color: var(--dark);
}
.section-header p {
color: var(--gray);
font-size: 1.1rem;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
}
.service-card {
background: #f4f4f5;
border: 1px solid transparent;
border-radius: 24px;
padding: 2.5rem;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
text-align: center;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--primary);
opacity: 0;
transition: opacity 0.3s ease;
}
.service-card:hover {
transform: translateY(-8px);
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
background: white;
}
.service-card:hover::before {
opacity: 1;
}
.service-icon {
width: 64px;
height: 64px;
background: white;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
margin: 0 auto 1.5rem;
color: var(--primary);
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.service-icon svg {
stroke: var(--primary);
transition: stroke 0.3s ease;
}
.service-card:hover .service-icon {
background: var(--primary);
color: white;
}
.service-card:hover .service-icon svg {
stroke: white;
}
.service-card h3 {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
letter-spacing: -0.01em;
color: var(--dark);
transition: color 0.3s ease;
}
.service-card p {
color: var(--gray);
line-height: 1.7;
margin-bottom: 1.5rem;
transition: color 0.3s ease;
}
.service-link {
color: var(--primary);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: gap 0.3s ease;
}
.service-link:hover {
gap: 1rem;
} .about {
padding: 5rem 5%;
position: relative;
}
.about-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6rem;
max-width: 1400px;
margin: 0 auto;
align-items: center;
}
.about-visual {
position: relative;
}
.about-image {
width: 100%;
height: 500px;
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.15), rgba(var(--secondary-rgb), 0.15)), #f4f4f5;
border-radius: 32px;
position: relative;
overflow: hidden;
}
.about-image::before {
display: none;
}
.about-badges {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
}
.about-badge {
background: white;
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 1rem 1.25rem;
display: flex;
align-items: center;
gap: 0.75rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.about-badge-icon {
width: 40px;
height: 40px;
background: var(--primary);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.about-badge-text {
display: flex;
flex-direction: column;
}
.about-badge-text strong {
font-weight: 600;
font-size: 0.95rem;
color: var(--dark);
}
.about-badge-text span {
font-size: 0.8rem;
color: var(--gray);
}
.about-content h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
line-height: 1.2;
color: var(--dark);
}
.about-content p {
color: var(--gray);
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
}
.about-features {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
margin-bottom: 2.5rem;
}
.about-feature {
display: flex;
align-items: center;
gap: 0.75rem;
}
.about-feature-icon {
width: 24px;
height: 24px;
background: var(--primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.75rem;
flex-shrink: 0;
}
.about-feature span {
font-weight: 500;
color: var(--dark);
} .testimonials {
padding: 5rem 5%;
position: relative;
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 2rem;
max-width: 1400px;
margin: 0 auto;
align-items: stretch;
}
.testimonial-card {
background: white;
border: 1px solid var(--glass-border);
border-radius: 24px;
padding: 2.5rem;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
}
.testimonial-card:hover {
transform: translateY(-8px);
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.08);
}
.testimonial-stars {
color: var(--star);
font-size: 1.25rem;
margin-bottom: 1.5rem;
letter-spacing: 0.1em;
}
.testimonial-text {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 2rem;
color: var(--dark);
flex-grow: 1;
}
.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
margin-top: auto;
}
.testimonial-avatar {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.1rem;
color: white;
}
.testimonial-info h4 {
font-weight: 600;
margin-bottom: 0.25rem;
color: var(--dark);
}
.testimonial-info span {
color: var(--gray);
font-size: 0.9rem;
} .pricing {
padding: 5rem 5%;
position: relative;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
align-items: stretch;
}
.pricing-card {
background: white;
border: 2px solid var(--glass-border);
border-radius: 32px;
padding: 3rem;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
position: relative;
}
.pricing-card:hover {
transform: translateY(-10px);
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
}
.pricing-card.featured {
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}
.pricing-card.featured:hover {
transform: scale(1.05) translateY(-10px);
}
.popular-badge {
position: absolute;
top: -14px;
left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: white;
padding: 0.4rem 1.25rem;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
white-space: nowrap;
}
.pricing-header {
text-align: center;
padding-bottom: 2rem;
border-bottom: 1px solid var(--glass-border);
margin-bottom: 2rem;
}
.pricing-name {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: var(--dark);
}
.pricing-description {
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
.pricing-price {
display: flex;
align-items: baseline;
justify-content: center;
gap: 0.25rem;
}
.pricing-currency {
font-size: 1.5rem;
font-weight: 600;
color: var(--dark);
}
.pricing-amount {
font-size: 3.5rem;
font-weight: 800;
color: var(--dark);
line-height: 1;
}
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-currency {
color: var(--primary);
}
.pricing-period {
color: var(--gray);
font-size: 1rem;
}
.pricing-features {
list-style: none;
margin-bottom: 2rem;
flex-grow: 1;
padding: 0;
}
.pricing-features li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
color: var(--gray);
}
.pricing-features li svg {
flex-shrink: 0;
}
.pricing-features li.included {
color: var(--dark);
}
.pricing-features li.included svg {
color: var(--primary);
}
.pricing-cta {
margin-top: auto;
}
.pricing-cta .btn-primary,
.pricing-cta .btn-secondary {
width: 100%;
justify-content: center;
} .faq {
padding: 5rem 5%;
position: relative;
}
.faq-grid {
max-width: 900px;
margin: 0 auto;
}
.faq-item {
background: white;
border: 1px solid var(--glass-border);
border-radius: 16px;
margin-bottom: 1rem;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item:hover {
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.06);
}
.faq-question {
width: 100%;
padding: 1.5rem 2rem;
background: none;
border: none;
color: var(--dark);
font-size: 1.1rem;
font-weight: 600;
text-align: left;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
font-family: inherit;
}
.faq-question:hover {
color: var(--primary);
}
.faq-question:focus {
outline: none;
}
.faq-icon {
width: 24px;
height: 24px;
border-radius: 50%;
background: #f4f4f5;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 300px;
}
.faq-answer p {
padding: 0 2rem 1.5rem;
color: var(--gray);
line-height: 1.8;
} .cta {
padding: 5rem 5%;
position: relative;
}
.cta-content {
position: relative;
z-index: 1;
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.cta h2 {
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.15;
color: var(--dark);
}
.cta p {
font-size: 1.25rem;
color: var(--gray);
margin-bottom: 3rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
line-height: 1.7;
}
.cta-buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.cta-note {
margin-top: 1.5rem;
font-size: 0.9rem;
color: var(--gray);
} .logos-section {
padding: 60px 0 80px 0;
overflow: hidden;
}
.logos-title {
text-align: center;
color: var(--dark);
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 40px;
}
.logos-marquee {
display: flex;
animation: marquee 30s linear infinite;
}
.logos-track {
display: flex;
align-items: center;
flex-shrink: 0;
}
.logo-item {
font-size: 1.1rem;
font-weight: 600;
color: var(--gray);
white-space: nowrap;
padding: 0 80px;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
} .chat-widget {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
}
.chat-button {
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--primary);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: white;
box-shadow: 0 4px 24px rgba(var(--primary-rgb), 0.4);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: visible;
}
.chat-button:hover {
transform: scale(1.05);
box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.5);
}
.chat-button-pulse {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background: var(--primary);
animation: chatPulse 2s ease-out infinite;
}
@keyframes chatPulse {
0% { transform: scale(1); opacity: 0.6; }
100% { transform: scale(1.8); opacity: 0; }
}
.chat-button svg {
position: relative;
z-index: 1;
}
.chat-popup {
position: absolute;
bottom: 75px;
right: 0;
width: 280px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 24px;
padding: 32px 24px;
text-align: center;
box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
}
.chat-popup.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.chat-popup-glow {
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.08) 0%, transparent 50%);
pointer-events: none;
}
.chat-popup-close {
position: absolute;
top: 12px;
right: 12px;
width: 28px;
height: 28px;
background: #f4f4f5;
border: none;
border-radius: 50%;
color: var(--gray);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
}
.chat-popup-close:hover {
background: var(--glass-border);
color: var(--dark);
}
.chat-popup h4 {
font-size: 1.15rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 8px;
}
.chat-popup p {
color: var(--gray);
font-size: 0.875rem;
margin-bottom: 20px;
line-height: 1.5;
}
.chat-download-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
padding: 12px 20px;
background: var(--dark);
color: white;
border-radius: 100px;
font-weight: 600;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.3s ease;
}
.chat-download-btn:hover {
background: var(--primary);
color: white;
transform: translateX(4px);
}
.chat-download-btn svg {
transition: transform 0.3s ease;
}
.chat-download-btn:hover svg {
transform: translateX(4px);
} .site-footer {
padding: 4rem 5% 2rem;
border-top: 1px solid var(--glass-border);
background: #fafafa;
}
.footer-container {
max-width: 1400px;
margin: 0 auto;
}
.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
margin-bottom: 4rem;
}
.footer-brand .logo {
font-size: 1.75rem;
font-weight: 800;
color: var(--primary);
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
display: inline-block;
}
.footer-brand p {
color: var(--gray);
line-height: 1.7;
max-width: 300px;
}
.footer-column h4 {
font-weight: 600;
margin-bottom: 1.5rem;
font-size: 1rem;
color: var(--dark);
}
.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-column li {
margin-bottom: 0.75rem;
}
.footer-column a {
color: var(--gray);
text-decoration: none;
transition: color 0.3s ease;
}
.footer-column a:hover {
color: var(--primary);
}
.footer-social {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
.footer-social a {
width: 44px;
height: 44px;
background: white;
border: 1px solid var(--glass-border);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray);
text-decoration: none;
transition: all 0.3s ease;
}
.footer-social a:hover {
background: var(--primary);
border-color: var(--primary);
color: white;
transform: translateY(-3px);
}
.footer-bottom {
padding-top: 2rem;
border-top: 1px solid var(--glass-border);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-bottom p {
color: var(--gray);
font-size: 0.9rem;
margin: 0;
}
.footer-legal {
display: flex;
gap: 2rem;
}
.footer-legal a {
color: var(--gray);
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}
.footer-legal a:hover {
color: var(--primary);
} .site-main {
position: relative;
z-index: 1;
padding: 8rem 5% 3rem;
max-width: 900px;
margin: 0 auto;
} .home .site-main,
.front-page .site-main,
body.home .site-main {
max-width: none;
padding: 0;
} .site-main article {
background: white;
border: 1px solid var(--glass-border);
border-radius: 24px;
padding: 3rem;
margin: 2rem auto;
max-width: 900px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.sticky {
border-left: 4px solid var(--primary);
}
.site-main .entry-header {
margin-bottom: 2rem;
}
.site-main .entry-title {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 800;
color: var(--dark);
margin-bottom: 1rem;
line-height: 1.3;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.site-main .entry-title a {
color: var(--dark);
text-decoration: none;
}
.site-main .entry-title a:hover {
color: var(--primary);
}
.site-main .entry-meta {
color: var(--gray);
font-size: 0.9rem;
}
.site-main .entry-meta a {
color: var(--primary);
text-decoration: none;
}
.site-main .entry-content {
color: var(--gray);
line-height: 1.8;
font-size: 1.1rem;
}
.site-main .entry-content h2,
.site-main .entry-content h3,
.site-main .entry-content h4 {
color: var(--dark);
margin-top: 2rem;
margin-bottom: 1rem;
}
.site-main .entry-content p {
margin-bottom: 1.5rem;
}
.site-main .entry-content img,
.entry-content img {
max-width: 100%;
height: auto;
} .alignleft {
float: left;
margin: 0.5rem 1.5rem 1rem 0;
}
.alignright {
float: right;
margin: 0.5rem 0 1rem 1.5rem;
}
.aligncenter {
display: block;
margin: 1.5rem auto;
clear: both;
}
.alignnone {
display: block;
margin: 1.5rem 0;
}
img.alignleft,
img.alignright,
img.aligncenter,
img.alignnone {
max-width: 100%;
height: auto;
} .wp-caption {
max-width: 100%;
margin-bottom: 1.5rem;
background: #f4f4f5;
border: 1px solid var(--glass-border);
border-radius: 8px;
padding: 0.5rem;
}
.wp-caption.alignleft {
float: left;
margin: 0.5rem 1.5rem 1rem 0;
}
.wp-caption.alignright {
float: right;
margin: 0.5rem 0 1rem 1.5rem;
}
.wp-caption.aligncenter {
display: block;
margin: 1.5rem auto;
clear: both;
}
.wp-caption img {
display: block;
max-width: 100%;
height: auto;
border-radius: 4px;
}
.wp-caption-text {
font-size: 0.875rem;
color: var(--gray);
text-align: center;
padding: 0.5rem 0.5rem 0;
margin: 0;
} .entry-content::after {
content: "";
display: table;
clear: both;
} .wp-block-image.alignleft {
float: left;
margin: 0.5rem 1.5rem 1rem 0;
}
.wp-block-image.alignright {
float: right;
margin: 0.5rem 0 1rem 1.5rem;
}
.wp-block-image.aligncenter {
margin: 1.5rem auto;
text-align: center;
}
.wp-block-image figcaption {
font-size: 0.875rem;
color: var(--gray);
text-align: center;
margin-top: 0.5rem;
}
.site-main .entry-content a,
.site-main article a,
.entry-content a,
article.post a,
article.page a {
color: var(--primary);
text-decoration: underline;
text-decoration-color: rgba(var(--primary-rgb), 0.3);
transition: all 0.2s ease;
}
.site-main .entry-content a:hover,
.site-main article a:hover,
.entry-content a:hover,
article.post a:hover,
article.page a:hover {
color: var(--primary-dark);
text-decoration-color: var(--primary);
}
.site-main .entry-content ul,
.site-main .entry-content ol {
margin-left: 1.5rem;
margin-bottom: 1.5rem;
}
.site-main .entry-content blockquote {
border-left: 4px solid var(--primary);
padding-left: 1.5rem;
margin: 2rem 0;
font-style: italic;
color: var(--gray);
}
.site-main img {
border-radius: 12px;
max-width: 100%;
height: auto;
}
.site-main .post-thumbnail {
margin-bottom: 1.5rem;
overflow: hidden;
}
.site-main .entry-content code {
background: rgba(var(--primary-rgb), 0.08);
color: var(--primary-dark);
padding: 0.2em 0.4em;
border-radius: 4px;
font-size: 0.9em;
}
.site-main .entry-content pre {
background: var(--dark);
color: #f8fafc;
padding: 1.5rem;
border-radius: 8px;
overflow-x: auto;
margin: 1.5rem 0;
}
.site-main .entry-footer {
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--glass-border);
color: var(--gray);
font-size: 0.9rem;
}
.site-main .entry-footer a {
color: var(--primary);
text-decoration: none;
} .search-results .site-main {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
max-width: 1200px;
}
.search-results .page-header {
grid-column: 1 / -1;
}
.search-results .posts-navigation {
grid-column: 1 / -1;
}
.search-card {
display: flex;
flex-direction: column;
height: 100%;
margin: 0;
overflow: hidden;
max-width: 100%;
}
.search-card-image {
width: 100%;
height: 200px;
overflow: hidden;
border-radius: 16px 16px 0 0;
margin: -3rem -3rem 1.5rem -3rem;
width: calc(100% + 6rem);
}
.search-card-image a {
display: block;
height: 100%;
}
.search-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0;
transition: transform 0.3s ease;
}
.search-card:hover .search-card-image img {
transform: scale(1.05);
}
.search-card-content {
display: flex;
flex-direction: column;
flex: 1;
overflow: hidden;
max-width: 100%;
}
.search-card .entry-header {
margin-bottom: 1rem;
}
.search-card .entry-title {
font-size: 1.3rem;
line-height: 1.4;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.search-card .entry-summary {
flex: 1;
color: var(--gray);
margin-bottom: 1.5rem;
}
.search-card .entry-summary p {
margin: 0;
}
.read-more-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--primary);
color: white !important;
padding: 0.75rem 1.5rem;
border-radius: 8px;
font-weight: 600;
text-decoration: none !important;
transition: all 0.3s ease;
align-self: flex-start;
}
.read-more-btn:hover {
background: var(--primary-dark);
transform: translateX(5px);
}
.read-more-btn svg {
transition: transform 0.3s ease;
}
.read-more-btn:hover svg {
transform: translateX(3px);
} .post-navigation {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
.post-navigation .nav-links {
display: flex;
justify-content: space-between;
gap: 2rem;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
flex: 1;
}
.post-navigation a {
display: block;
background: white;
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1.5rem;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.post-navigation a:hover {
border-color: var(--primary);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.1);
}
.post-navigation .nav-subtitle {
display: block;
color: var(--gray);
font-size: 0.85rem;
margin-bottom: 0.5rem;
}
.post-navigation .nav-title {
color: var(--dark);
font-weight: 600;
} .comments-area {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background: white;
border: 1px solid var(--glass-border);
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.comments-title {
color: var(--dark);
font-size: 1.5rem;
margin-bottom: 2rem;
}
.comment-list {
list-style: none;
padding: 0;
}
.comment-body {
padding: 1.5rem;
margin-bottom: 1rem;
background: #f4f4f5;
border-radius: 12px;
}
.comment-author {
color: var(--dark);
font-weight: 600;
}
.comment-metadata {
color: var(--gray);
font-size: 0.85rem;
margin-bottom: 1rem;
}
.comment-metadata a {
color: var(--gray);
text-decoration: none;
}
.comment-content {
color: var(--gray);
line-height: 1.7;
}
.comment-reply-link {
color: var(--primary);
text-decoration: none;
font-size: 0.9rem;
}
.comment-respond {
margin-top: 3rem;
background: #f4f4f5;
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 2rem;
}
.comment-reply-title {
font-size: 1.5rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 1rem;
}
.comment-reply-title small {
display: block;
font-size: 0.9rem;
font-weight: 400;
margin-top: 0.5rem;
}
.logged-in-as {
color: var(--gray);
margin-bottom: 1.5rem;
font-size: 0.95rem;
display: block;
}
.logged-in-as a {
color: var(--primary);
}
.comment-notes,
.required-note {
color: var(--gray);
margin-bottom: 1rem;
font-size: 0.9rem;
display: block;
}
.comment-form-comment {
margin-bottom: 1.5rem;
}
.comment-form label {
color: var(--dark);
display: block;
margin-bottom: 0.5rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 1rem;
background: white;
border: 1px solid var(--glass-border);
border-radius: 8px;
color: var(--dark);
margin-bottom: 1rem;
}
.comment-form input:focus,
.comment-form textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}
.comment-form .submit {
background: var(--primary);
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 12px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.comment-form .submit:hover {
background: var(--primary-dark);
} .archive-page {
padding: 8rem 5% 3rem;
max-width: 1200px;
}
.archive-container {
max-width: 1200px;
margin: 0 auto;
}
.archive-header {
text-align: center;
margin-bottom: 3rem;
}
.archive-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
color: var(--dark);
margin-bottom: 0.5rem;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.archive-description {
color: var(--gray);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
}
.latest-posts {
padding: 5rem 2rem;
max-width: 1200px;
margin: 0 auto;
}
.posts-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: 1fr;
gap: 2rem;
}
@media (max-width: 1024px) {
.posts-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 640px) {
.posts-grid {
grid-template-columns: 1fr;
}
}
.post-card {
background: white;
border: 1px solid var(--glass-border);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.post-card:hover {
transform: translateY(-5px);
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.1);
}
.post-card-image {
aspect-ratio: 16/10;
overflow: hidden;
}
.post-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.post-card:hover .post-card-image img {
transform: scale(1.05);
}
.post-card-image.no-thumbnail {
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.1));
display: flex;
align-items: center;
justify-content: center;
}
.post-card-image.no-thumbnail::after {
content: '';
width: 60px;
height: 60px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(124,58,237,0.3)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
background-size: 24px;
}
.post-card-content {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex: 1;
}
.post-card-meta {
color: var(--primary);
font-size: 0.85rem;
font-weight: 500;
margin-bottom: 0.75rem;
}
.post-card-title {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
line-height: 1.4;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.post-card-title a {
color: var(--dark);
text-decoration: none;
transition: color 0.3s ease;
}
.post-card-title a:hover {
color: var(--primary);
}
.post-card-excerpt {
color: var(--gray);
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 1rem;
flex: 1;
}
.post-card-link {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
background: var(--primary);
color: white !important;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
padding: 0.75rem 1.5rem;
border-radius: 8px;
transition: all 0.3s ease;
margin-top: auto;
}
.post-card-link:hover {
background: var(--primary-dark);
transform: translateX(5px);
}
.post-card-link svg {
transition: transform 0.3s ease;
}
.post-card-link:hover svg {
transform: translateX(3px);
}
.archive-navigation {
margin-top: 3rem;
text-align: center;
}
.archive-navigation .nav-links {
display: flex;
justify-content: center;
gap: 1rem;
}
.archive-navigation .nav-links a {
background: white;
border: 1px solid var(--glass-border);
color: var(--dark);
padding: 0.75rem 1.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
}
.archive-navigation .nav-links a:hover {
background: var(--primary);
border-color: var(--primary);
color: white;
}
.no-posts {
text-align: center;
padding: 4rem 2rem;
}
.no-posts h2 {
color: var(--dark);
font-size: 1.5rem;
margin-bottom: 1rem;
}
.no-posts p {
color: var(--gray);
margin-bottom: 2rem;
}
@media (max-width: 768px) {
.posts-grid {
grid-template-columns: 1fr;
}
} .error-404 {
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
padding: 4rem 2rem;
}
.error-404-content {
text-align: center;
max-width: 500px;
}
.error-404-icon {
color: var(--primary);
margin-bottom: 2rem;
opacity: 0.8;
}
.error-404-title {
font-size: 8rem;
font-weight: 800;
color: var(--dark);
line-height: 1;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.error-404-subtitle {
font-size: 2rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 1rem;
}
.error-404-description {
color: var(--gray);
font-size: 1.1rem;
line-height: 1.7;
margin-bottom: 2.5rem;
}
.error-404-button {
display: inline-flex;
align-items: center;
gap: 0.75rem;
background: var(--primary);
color: white;
padding: 1rem 2rem;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.error-404-button:hover {
background: var(--primary-dark);
transform: translateY(-2px);
box-shadow: 0 10px 40px rgba(var(--primary-rgb), 0.3);
color: white;
} .widget-area {
max-width: 900px;
margin: 2rem auto;
padding: 0 1rem;
}
.widget {
background: white;
border: 1px solid var(--glass-border);
border-radius: 16px;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.widget-title {
color: var(--dark);
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 1rem;
}
.widget ul {
list-style: none;
padding: 0;
}
.widget li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--glass-border);
}
.widget li:last-child {
border-bottom: none;
}
.widget a {
color: var(--gray);
text-decoration: none;
}
.widget a:hover {
color: var(--primary);
}
.skip-link.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
.skip-link.screen-reader-text:focus {
background-color: var(--primary);
clip: auto !important;
clip-path: none;
color: white;
display: block;
font-size: 1rem;
font-weight: 600;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
} @media (max-width: 1100px) {
.site-header {
width: calc(100% - 40px);
}
}
@media (max-width: 1024px) {
.footer-top {
grid-template-columns: 1fr 1fr;
}
}
@media (max-width: 900px) {
.about-container {
grid-template-columns: 1fr;
gap: 3rem;
}
.about-visual {
order: -1;
max-width: 600px;
margin: 0 auto;
width: 100%;
}
.about-visual .about-image {
height: 350px;
width: 100%;
}
.about-content {
text-align: center;
}
}
@media (max-width: 768px) {
.hero {
padding: 75px 5% 2rem;
min-height: auto;
}
.site-header {
top: 10px;
width: calc(100% - 20px);
}
.nav-wrapper {
padding: 12px 20px;
border-radius: 24px;
}
.mobile-menu-btn {
display: flex;
}
.nav-links,
.nav-buttons {
display: none;
}
.mobile-nav {
padding: 16px 0 0;
}
.stats {
grid-template-columns: 1fr;
gap: 1rem;
}
.stat-item {
display: flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
}
.stat-number {
font-size: 1.5rem;
}
.stat-label {
margin-top: 0;
}
.services-grid {
grid-template-columns: 1fr;
}
.faq {
padding-top: 2rem;
}
.testimonials-grid {
grid-template-columns: 1fr;
}
.services,
.about,
.testimonials,
.pricing,
.faq,
.cta {
padding: 3rem 5%;
}
.stats-section {
padding: 2.5rem 5%;
}
.stats-section .stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.stats-section .stat-item h3 {
font-size: 2rem;
}
.stats-section .stat-item p {
font-size: 0.85rem;
}
.logos-section {
padding: 2.5rem 0 3rem;
}
.logos-title {
font-size: 1.2rem;
margin-bottom: 1.5rem;
}
.logo-item {
padding: 0 40px;
font-size: 1rem;
}
.latest-posts {
padding: 3rem 1.5rem;
}
.section-header {
margin-bottom: 2rem;
}
.chat-widget {
bottom: 20px;
right: 20px;
}
.chat-popup {
width: 260px;
right: -5px;
}
.footer-top {
grid-template-columns: 1fr;
gap: 2.5rem;
text-align: center;
}
.footer-brand {
display: flex;
flex-direction: column;
align-items: center;
}
.footer-brand p {
max-width: 100%;
}
.footer-social {
justify-content: center;
}
.footer-column {
padding-bottom: 1.5rem;
border-bottom: 1px solid var(--glass-border);
}
.footer-column:last-child {
border-bottom: none;
padding-bottom: 0;
}
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 1.5rem;
padding-top: 2.5rem;
}
.footer-legal {
flex-wrap: wrap;
justify-content: center;
gap: 1.5rem;
}
.about-features {
grid-template-columns: 1fr;
}
.pricing-grid {
grid-template-columns: 1fr;
}
.pricing-card.featured {
transform: none;
}
.pricing-card.featured:hover {
transform: translateY(-10px);
}
.about-badges {
flex-direction: column;
align-items: center;
}
.about-badge {
width: 100%;
max-width: 280px;
justify-content: center;
}
.about {
padding: 3rem 5%;
}
.about-visual .about-image {
height: 250px;
border-radius: 20px;
}
.about-features {
justify-content: center;
}
.about-feature {
justify-content: center;
}
.section-header h2 {
white-space: normal;
}
}
@media (max-width: 600px) {
.hero h1 {
font-size: clamp(2.5rem, 8vw, 3.5rem);
}
.hero-buttons {
flex-direction: column;
align-items: center;
}
.btn-primary,
.btn-secondary {
width: 100%;
justify-content: center;
}
}
@media (max-width: 576px) {
.testimonial-card {
padding: 1.5rem;
}
.service-card {
padding: 1.5rem;
}
.stats-section .stats-grid {
grid-template-columns: 1fr 1fr;
gap: 1rem;
}
.stats-section .stat-item h3 {
font-size: 1.75rem;
}
.stats-section .stat-item p {
font-size: 0.8rem;
word-wrap: break-word;
overflow-wrap: break-word;
}
.logo-item {
padding: 0 24px;
font-size: 0.9rem;
}
.services,
.about,
.testimonials,
.pricing,
.faq,
.cta {
padding: 2.5rem 5%;
}
.latest-posts {
padding: 2.5rem 1rem;
}
}
@media (max-width: 400px) {
.stats-section .stats-grid {
grid-template-columns: 1fr;
gap: 1rem;
}
.stats-section .stat-item {
display: flex;
align-items: center;
gap: 1rem;
text-align: left;
}
.stats-section .stat-item h3 {
font-size: 1.75rem;
margin-bottom: 0;
min-width: fit-content;
}
.stats-section .stat-item p {
font-size: 0.85rem;
}
.trust-badges {
gap: 1rem;
}
.trust-badge {
font-size: 0.8rem;
}
.hero-badge {
font-size: 0.75rem;
padding: 6px 14px;
}
.section-badge {
font-size: 0.75rem;
}
.pricing-card {
padding: 1.5rem;
}
.chat-popup {
width: 240px;
}
.logo-item {
padding: 0 16px;
font-size: 0.85rem;
}
.logos-section {
padding: 2rem 0;
}
.logos-title {
font-size: 1rem;
margin-bottom: 1rem;
}
} @keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-in {
animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }  .template-pricing,
.template-about,
.template-contact {
padding: 80px 0 0 0;
max-width: none;
} .pricing-hero,
.about-hero,
.contact-hero {
padding: 3rem 5% 2rem;
text-align: center;
}
.pricing-hero-title,
.about-hero-title,
.contact-hero-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 800;
color: var(--dark);
margin-bottom: 1rem;
}
.pricing-hero-subtitle,
.about-hero-subtitle,
.contact-hero-subtitle {
font-size: 1.25rem;
color: var(--gray);
max-width: 600px;
margin: 0 auto;
} .pricing-plans {
padding: 2rem 5% 6rem;
}
.pricing-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
align-items: start;
}
.pricing-card {
background: white;
border: 2px solid var(--glass-border);
border-radius: 32px;
padding: 3rem;
position: relative;
transition: all 0.3s ease;
}
.pricing-card:hover {
transform: translateY(-5px);
border-color: rgba(var(--primary-rgb), 0.3);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.1);
}
.pricing-card-featured {
background: white;
border-color: var(--primary);
transform: scale(1.05);
box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.15);
}
.pricing-card-featured:hover {
transform: scale(1.05) translateY(-5px);
}
.pricing-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: white;
padding: 0.5rem 1.5rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
}
.pricing-card-header {
text-align: center;
margin-bottom: 1.5rem;
}
.pricing-plan-name {
font-size: 1.5rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 0.5rem;
}
.pricing-plan-description {
color: var(--gray);
font-size: 0.95rem;
}
.pricing-card-price {
text-align: center;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--glass-border);
}
.price-currency {
font-size: 1.5rem;
color: var(--gray);
vertical-align: top;
}
.price-amount {
font-size: 4rem;
font-weight: 800;
color: var(--dark);
line-height: 1;
}
.pricing-card-featured .price-amount {
color: var(--primary);
}
.price-period {
font-size: 1rem;
color: var(--gray);
}
.pricing-features {
list-style: none;
margin-bottom: 2rem;
}
.pricing-features li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
border-bottom: 1px solid var(--glass-border);
}
.pricing-features li:last-child {
border-bottom: none;
}
.feature-included {
color: var(--dark);
}
.feature-included svg {
color: var(--primary);
}
.feature-excluded {
color: var(--gray);
opacity: 0.6;
}
.feature-excluded svg {
color: var(--gray);
}
.pricing-button {
display: block;
width: 100%;
padding: 1rem 2rem;
text-align: center;
background: white;
border: 1px solid var(--glass-border);
color: var(--dark);
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.pricing-button:hover {
background: rgba(var(--primary-rgb), 0.05);
border-color: var(--primary);
color: var(--primary);
}
.pricing-button-featured {
background: var(--primary);
border-color: var(--primary);
color: white;
}
.pricing-button-featured:hover {
background: var(--primary-dark);
border-color: var(--primary-dark);
color: white;
}
.pricing-additional-content,
.about-additional-content,
.contact-additional-content {
padding: 4rem 5%;
}
.pricing-content-container,
.about-content-container,
.contact-content-container {
max-width: 800px;
margin: 0 auto;
} @media (max-width: 992px) {
.pricing-container {
grid-template-columns: 1fr;
max-width: 450px;
}
.pricing-card-featured {
transform: none;
order: -1;
}
.pricing-card-featured:hover {
transform: translateY(-5px);
}
}  .template-about .tpl-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
box-sizing: border-box;
} .template-about .about-story {
padding: 3rem 0 5rem;
}
.template-about .about-story-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}
.template-about .about-section-title {
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 700;
color: var(--dark);
margin-bottom: 1.5rem;
}
.template-about .about-section-title-center {
text-align: center;
margin-bottom: 0;
}
.template-about .about-story-content p {
color: var(--gray);
line-height: 1.8;
margin-bottom: 1.25rem;
font-size: 1.05rem;
}
.template-about .about-story-content p:last-child {
margin-bottom: 0;
}
.template-about .about-story-image {
display: flex;
justify-content: center;
align-items: center;
}
.template-about .about-image {
width: 100%;
height: auto;
border-radius: 24px;
object-fit: cover;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.template-about .about-image-placeholder {
width: 100%;
aspect-ratio: 4/3;
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--secondary-rgb), 0.08));
border: 1px solid var(--glass-border);
border-radius: 24px;
display: flex;
justify-content: center;
align-items: center;
color: var(--gray);
} .template-about .about-stats {
padding: 5rem 0;
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03), rgba(var(--secondary-rgb), 0.03));
border-top: 1px solid var(--glass-border);
border-bottom: 1px solid var(--glass-border);
}
.template-about .stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
text-align: center;
}
.template-about .stat-item {
padding: 1rem;
}
.template-about .stat-number {
display: block;
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 800;
background: linear-gradient(135deg, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 0.75rem;
}
.template-about .stat-label {
color: var(--gray);
font-size: 1.1rem;
font-weight: 500;
} .template-about .about-values {
padding: 5rem 0 6rem;
}
.template-about .values-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.template-about .value-card {
background: #f4f4f5;
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2.5rem 2rem;
text-align: center;
transition: all 0.3s ease;
}
.template-about .value-card:hover {
transform: translateY(-5px);
border-color: rgba(var(--primary-rgb), 0.3);
background: white;
box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08);
}
.template-about .value-icon {
width: 70px;
height: 70px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: var(--primary);
}
.template-about .value-title {
font-size: 1.25rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 1rem;
}
.template-about .value-description {
color: var(--gray);
line-height: 1.7;
font-size: 0.95rem;
} .template-about .about-team {
padding: 5rem 0 6rem;
background: #f9f9f9;
border-top: 1px solid var(--glass-border);
}
.template-about .team-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.template-about .team-member {
text-align: center;
padding: 1.5rem 1rem;
border-radius: 16px;
transition: all 0.3s ease;
}
.template-about .team-member:hover {
background: white;
box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.08);
}
.template-about .team-member-avatar {
width: 120px;
height: 120px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.25rem;
font-size: 2rem;
font-weight: 700;
color: white;
box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
overflow: hidden;
}
.template-about .team-member-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}
.template-about .team-member-name {
font-size: 1.15rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 0.35rem;
}
.template-about .team-member-role {
color: var(--primary);
font-size: 0.95rem;
font-weight: 500;
} .template-about .about-additional-content {
padding: 4rem 0;
}
.template-about .about-content-container {
max-width: 800px;
margin: 0 auto;
padding: 0 2rem;
} @media (max-width: 992px) {
.template-about .tpl-container {
padding: 0 1.5rem;
}
.template-about .about-story-grid {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.template-about .about-story-image {
order: -1;
}
.template-about .about-image-placeholder {
max-width: 500px;
margin: 0 auto;
}
.template-about .stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
.template-about .values-grid {
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.template-about .team-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1.5rem;
}
}
@media (max-width: 576px) {
.template-about .tpl-container {
padding: 0 1rem;
}
.template-about .stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.template-about .stat-number {
font-size: 2rem;
}
.template-about .stat-label {
font-size: 0.9rem;
}
.template-about .values-grid {
grid-template-columns: 1fr;
}
.template-about .team-grid {
grid-template-columns: 1fr;
}
.template-about .team-member-avatar {
width: 100px;
height: 100px;
font-size: 1.75rem;
}
} .contact-main {
padding: 2rem 0 6rem;
}
.contact-container {
max-width: 1100px;
margin: 0 auto;
padding: 0 5%;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 0;
background: white;
border: 1px solid var(--glass-border);
border-radius: 24px;
overflow: hidden;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.contact-info {
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--secondary-rgb), 0.04));
padding: 3rem;
}
.contact-info-title {
font-size: 1.75rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 0.75rem;
}
.contact-info-subtitle {
color: var(--gray);
margin-bottom: 2.5rem;
line-height: 1.7;
}
.contact-details {
margin-bottom: 2.5rem;
}
.contact-detail-item {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.5rem;
}
.contact-detail-icon {
width: 48px;
height: 48px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
flex-shrink: 0;
}
.contact-detail-text {
display: flex;
flex-direction: column;
}
.contact-detail-label {
font-size: 0.85rem;
color: var(--gray);
margin-bottom: 0.25rem;
}
.contact-detail-value {
color: var(--dark);
font-weight: 500;
}
.contact-social {
padding-top: 2rem;
border-top: 1px solid var(--glass-border);
}
.contact-social-label {
display: block;
color: var(--gray);
font-size: 0.9rem;
margin-bottom: 1rem;
}
.contact-social-links {
display: flex;
gap: 0.75rem;
}
.contact-social-link {
width: 44px;
height: 44px;
background: white;
border: 1px solid var(--glass-border);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: var(--gray);
transition: all 0.3s ease;
}
.contact-social-link:hover {
background: var(--primary);
border-color: var(--primary);
color: white;
} .contact-form-wrapper {
padding: 3rem;
}
.contact-form {
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5rem;
}
.form-group {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.form-group label {
font-size: 0.9rem;
font-weight: 500;
color: var(--dark);
}
.form-group input,
.form-group textarea {
width: 100%;
box-sizing: border-box;
background: #f4f4f5;
border: 1px solid var(--glass-border);
border-radius: 12px;
padding: 1rem 1.25rem;
color: var(--dark);
font-size: 1rem;
font-family: inherit;
transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
color: var(--gray);
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--primary);
background: white;
box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}
.form-group textarea {
resize: vertical;
min-height: 120px;
}
.contact-submit {
display: flex;
width: 100%;
align-items: center;
justify-content: center;
gap: 0.75rem;
background: var(--primary);
color: white;
border: none;
padding: 1rem 2rem;
border-radius: 12px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.contact-submit:hover {
background: var(--primary-dark);
transform: translateY(-2px);
}
.contact-form-note {
font-size: 0.85rem;
color: var(--gray);
margin-top: 1rem;
text-align: center;
}
.contact-cards-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.contact-card {
background: white;
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2.5rem 2rem;
text-align: center;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}
.contact-card-icon {
width: 64px;
height: 64px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
margin: 0 auto 1.25rem;
}
.contact-card-title {
font-size: 1rem;
font-weight: 600;
color: var(--gray);
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.contact-card-value {
font-size: 1.1rem;
font-weight: 500;
color: var(--dark);
line-height: 1.6;
}
.contact-social-center {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 2.5rem;
padding-top: 2rem;
border-top: 1px solid var(--glass-border);
}
.contact-social-center .contact-social-label {
margin-bottom: 1rem;
}
.contact-social-center .contact-social-links {
display: flex;
gap: 0.75rem;
}
.contact-chatbot-banner {
display: flex;
align-items: center;
gap: 1.5rem;
margin-top: 2rem;
padding: 2rem 2.5rem;
background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06), rgba(var(--secondary-rgb), 0.04));
border: 1px solid rgba(var(--primary-rgb), 0.12);
border-radius: 20px;
}
.contact-chatbot-banner-icon {
width: 56px;
height: 56px;
background: rgba(var(--primary-rgb), 0.1);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary);
flex-shrink: 0;
}
.contact-chatbot-banner-content {
flex: 1;
}
.contact-chatbot-banner-content h3 {
font-size: 1.1rem;
font-weight: 700;
color: var(--dark);
margin-bottom: 0.25rem;
}
.contact-chatbot-banner-content p {
font-size: 0.9rem;
color: var(--gray);
line-height: 1.5;
margin: 0;
}
.contact-chatbot-banner-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--primary);
color: white !important;
padding: 0.75rem 1.5rem;
border-radius: 12px;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
white-space: nowrap;
transition: all 0.3s ease;
flex-shrink: 0;
}
.contact-chatbot-banner-btn:hover {
background: var(--primary-dark);
color: white !important;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.contact-chatbot-banner {
flex-direction: column;
text-align: center;
padding: 1.5rem;
}
}
.contact-admin-notice {
margin-top: 1.5rem;
text-align: center;
}
.contact-admin-notice p {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: rgba(var(--primary-rgb), 0.06);
border: 1px solid rgba(var(--primary-rgb), 0.15);
border-radius: 12px;
padding: 0.75rem 1.25rem;
font-size: 0.85rem;
color: var(--gray);
}
.contact-form-content {
min-height: 300px;
}
.contact-form-placeholder {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 350px;
padding: 2rem;
}
.contact-form-placeholder .placeholder-icon {
color: var(--gray);
margin-bottom: 1.5rem;
opacity: 0.5;
}
.contact-form-placeholder h3 {
font-size: 1.25rem;
font-weight: 600;
color: var(--dark);
margin-bottom: 0.75rem;
}
.contact-form-placeholder p {
color: var(--gray);
max-width: 300px;
line-height: 1.6;
}
.contact-chatbot-promo {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid var(--glass-border);
text-align: center;
}
.contact-chatbot-promo .promo-divider {
display: block;
color: var(--gray);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}
.contact-chatbot-promo .promo-text {
color: var(--dark);
font-size: 0.95rem;
margin-bottom: 1rem;
max-width: none;
}
.chatbot-promo-btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--primary);
color: white !important;
padding: 0.75rem 1.5rem;
border-radius: 10px;
font-size: 0.9rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}
.chatbot-promo-btn:hover {
background: var(--primary-dark);
color: white !important;
transform: translateY(-2px);
} @media (max-width: 768px) {
.contact-grid {
grid-template-columns: 1fr;
}
.contact-cards-grid {
grid-template-columns: 1fr;
max-width: 400px;
margin: 0 auto;
}
.form-row {
grid-template-columns: 1fr;
}
.contact-info {
padding: 2rem;
}
.contact-form-wrapper {
padding: 2rem;
}
}