*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
 color: #1a1a2e;
 background: #fff;
 line-height: 1.6;
 overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: #4a4a4a; }
.btn {
 display: inline-block;
 padding: 14px 32px;
 border-radius: 8px;
 font-weight: 600;
 font-size: .95rem;
 cursor: pointer;
 transition: all .25s;
 border: none;
}
.btn-primary {
 background: #4f46e5;
 color: #fff;
}
.btn-primary:hover { background: #4338ca; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,.3); }
.btn-outline {
 background: transparent;
 color: #4f46e5;
 border: 2px solid #4f46e5;
}
.btn-outline:hover { background: #4f46e5; color: #fff; }
.btn-white { background: #fff; color: #4f46e5; }
.btn-white:hover { background: #f0f0ff; }
.section-label {
 display: inline-block;
 font-size: .8rem;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: #4f46e5;
 margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 640px; margin-bottom: 40px; color: #555; }
.header {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 background: rgba(255,255,255,.92);
 backdrop-filter: blur(12px);
 border-bottom: 1px solid #eee;
 transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header .container {
 display: flex;
 align-items: center;
 justify-content: space-between;
 height: 72px;
}
.logo { display: inline-block; }
.logo img { height: 32px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; color: #4a4a4a; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: #4f46e5; }
.nav-cta { margin-left: 16px; background: #4f46e5 !important; color: #fff !important; padding: 10px 24px !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: #1a1a2e; transition: .3s; border-radius: 2px; }
.hero {
 min-height: 100vh;
 display: flex;
 align-items: center;
 padding-top: 72px;
 background: linear-gradient(135deg, #f8f9ff 0%, #eef0ff 50%, #f0f4ff 100%);
 position: relative;
 overflow: hidden;
}
.hero::before {
 content: '';
 position: absolute;
 top: -120px; right: -120px;
 width: 500px; height: 500px;
 background: radial-gradient(circle, rgba(79,70,229,.08), transparent 70%);
 border-radius: 50%;
}
.hero .container {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 60px;
 align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-content .section-label { font-size: .85rem; }
.hero-content h1 { margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 32px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-social { display: flex; gap: 16px; margin-top: 40px; }
.hero-social a {
 width: 42px; height: 42px;
 border-radius: 50%;
 background: #fff;
 display: flex; align-items: center; justify-content: center;
 box-shadow: 0 2px 8px rgba(0,0,0,.08);
 transition: .25s;
 color: #4f46e5;
 font-size: 1.1rem;
}
.hero-social a:hover { background: #4f46e5; color: #fff; transform: translateY(-3px); }
.hero-visual {
 display: flex;
 justify-content: center;
 align-items: center;
 position: relative;
}
.hero-graphic {
 width: 100%;
 max-width: 480px;
 aspect-ratio: 1;
 background: linear-gradient(135deg, #4f46e5, #7c3aed);
 border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
 animation: morph 8s ease-in-out infinite;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 20px 60px rgba(79,70,229,.2);
}
.hero-graphic svg { width: 60%; height: 60%; fill: rgba(255,255,255,.15); }
@keyframes morph {
 0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}
.about { padding: 100px 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image {
 width: 100%;
 aspect-ratio: 4/3;
 background: linear-gradient(135deg, #eef0ff, #dde0ff);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
 position: relative;
 overflow: hidden;
}
.about-image::after {
 content: '';
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(79,70,229,.05), rgba(124,58,237,.08));
}
.about-creative {
 position: relative;
 background: none;
 overflow: visible;
}
.about-creative .about-main-img {
 width: 85%;
 height: auto;
 border-radius: 16px;
 box-shadow: 0 20px 60px rgba(79,70,229,.12);
 position: relative;
 z-index: 2;
}
.about-float-card {
 position: absolute;
 background: #fff;
 border-radius: 12px;
 padding: 14px 20px;
 display: flex;
 align-items: center;
 gap: 10px;
 box-shadow: 0 8px 30px rgba(0,0,0,.1);
 z-index: 3;
 font-weight: 600;
 font-size: .85rem;
 color: #1a1a2e;
}
.about-float-card i {
 width: 36px; height: 36px;
 background: #eef0ff;
 border-radius: 8px;
 display: flex; align-items: center; justify-content: center;
 color: #4f46e5;
 font-size: .9rem;
 flex-shrink: 0;
}
.about-float-1 {
 bottom: 20%;
 right: -10px;
 animation: float-card 4s ease-in-out infinite;
}
.about-float-2 {
 top: 10%;
 right: 5%;
 animation: float-card 4s ease-in-out infinite 2s;
}
@keyframes float-card {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-10px); }
}
.about-accent-circle {
 position: absolute;
 width: 140px; height: 140px;
 border: 3px solid rgba(79,70,229,.12);
 border-radius: 50%;
 bottom: -20px; left: -20px;
 z-index: 1;
}
.about-dots {
 position: absolute;
 top: -15px; right: 20%;
 width: 60px; height: 60px;
 z-index: 1;
 background-image: radial-gradient(circle, #4f46e5 1.5px, transparent 1.5px);
 background-size: 12px 12px;
 opacity: .15;
}
.about-points { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-points li {
 display: flex;
 align-items: center;
 gap: 12px;
 font-weight: 500;
 color: #333;
}
.about-points li .check {
 width: 24px; height: 24px;
 background: #ecfdf5;
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 color: #10b981;
 font-size: .85rem;
 flex-shrink: 0;
}
.services { padding: 100px 0; background: #fafbff; }
.services .section-header { text-align: center; }
.services .section-desc { margin-left: auto; margin-right: auto; }
.services-slider-wrapper { position: relative; overflow: hidden; }
.services-grid {
 display: flex;
 gap: 24px;
 transition: transform .5s cubic-bezier(.4,0,.2,1);
 will-change: transform;
}
.services-slider-wrapper::before,
.services-slider-wrapper::after {
 content: '';
 position: absolute;
 top: 0; bottom: 0;
 width: 60px;
 z-index: 2;
 pointer-events: none;
}
.services-slider-wrapper::before { left: 0; background: linear-gradient(90deg, #fafbff 0%, transparent 100%); }
.services-slider-wrapper::after { right: 0; background: linear-gradient(-90deg, #fafbff 0%, transparent 100%); }
.slider-controls {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 10px;
 margin-top: 28px;
}
.slider-dots {
 display: flex;
 gap: 8px;
}
.slider-dot {
 width: 8px; height: 8px;
 border-radius: 50%;
 background: #ccc;
 border: none;
 cursor: pointer;
 transition: all .4s;
 padding: 0;
}
.slider-dot.active { background: #4f46e5; width: 32px; border-radius: 4px; }
.service-card {
 background: #fff;
 border-radius: 16px;
 padding: 36px 28px;
 border: 1px solid #eee;
 transition: all .3s;
 position: relative;
 overflow: hidden;
 min-width: calc(33.333% - 16px);
 flex-shrink: 0;
}
@media (max-width: 968px) { .service-card { min-width: calc(50% - 12px); } }
@media (max-width: 640px) { .service-card { min-width: calc(100% - 0px); } }
.service-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0;
 width: 100%; height: 3px;
 background: linear-gradient(90deg, #4f46e5, #7c3aed);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
 width: 56px; height: 56px;
 background: #eef0ff;
 border-radius: 12px;
 display: flex; align-items: center; justify-content: center;
 margin-bottom: 20px;
 font-size: 1.4rem;
 color: #4f46e5;
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .92rem; color: #555; margin-bottom: 16px; }
.service-card .read-more { color: #4f46e5; font-weight: 600; font-size: .9rem; }
.service-card .read-more:hover { text-decoration: underline; }
.cta-banner {
 padding: 100px 0;
 background: linear-gradient(135deg, #4f46e5, #7c3aed);
 text-align: center;
 color: #fff;
 position: relative;
 overflow: hidden;
}
.cta-banner::before {
 content: '';
 position: absolute;
 top: -80px; right: -80px;
 width: 300px; height: 300px;
 border: 2px solid rgba(255,255,255,.1);
 border-radius: 50%;
 animation: float-slow 12s ease-in-out infinite;
}
.cta-banner::after {
 content: '';
 position: absolute;
 bottom: -60px; left: -40px;
 width: 200px; height: 200px;
 border: 2px solid rgba(255,255,255,.08);
 border-radius: 50%;
 animation: float-slow 10s ease-in-out infinite reverse;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }
.cta-banner .section-label { position: relative; z-index: 1; }
.pricing { padding: 100px 0; }
.pricing .section-header { text-align: center; }
.pricing .section-desc { margin-left: auto; margin-right: auto; }
.pricing-note { text-align: center; color: #555; font-size: .9rem; margin-bottom: 40px; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.pricing-card {
 background: #fff;
 border-radius: 16px;
 padding: 40px 32px;
 border: 2px solid #eee;
 text-align: center;
 transition: all .3s;
 position: relative;
}
.pricing-card.featured { border-color: #4f46e5; }
.pricing-card.featured .badge {
 position: absolute;
 top: -14px; left: 50%;
 transform: translateX(-50%);
 background: #4f46e5;
 color: #fff;
 padding: 4px 20px;
 border-radius: 20px;
 font-size: .8rem;
 font-weight: 600;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .price { font-size: 2.4rem; font-weight: 800; color: #4f46e5; margin: 16px 0 8px; }
.pricing-card .price span { font-size: .9rem; font-weight: 400; color: #555; }
.pricing-card .desc { font-size: .9rem; color: #555; margin-bottom: 24px; }
.pricing-features { text-align: left; margin-bottom: 32px; }
.pricing-features li {
 padding: 8px 0;
 border-bottom: 1px solid #f5f5f5;
 font-size: .92rem;
 color: #444;
 display: flex;
 align-items: center;
 gap: 10px;
}
.pricing-features li .check-icon { color: #10b981; font-size: .85rem; }
.faq { padding: 100px 0; background: #fafbff; }
.faq .section-header { text-align: center; }
.faq .section-desc { margin-left: auto; margin-right: auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
 background: #fff;
 border-radius: 12px;
 margin-bottom: 12px;
 border: 1px solid #eee;
 overflow: hidden;
}
.faq-question {
 width: 100%;
 padding: 20px 24px;
 background: none;
 border: none;
 text-align: left;
 font-size: 1rem;
 font-weight: 600;
 color: #1a1a2e;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
}
.faq-question .icon { transition: transform .3s; font-size: 1.2rem; color: #4f46e5; flex-shrink: 0; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all .3s; }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 200px; }
.faq-answer p { font-size: .92rem; color: #555; }
.blog { padding: 100px 0; }
.blog .section-header { text-align: center; }
.blog .section-desc { margin-left: auto; margin-right: auto; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.blog-card {
 background: #fff;
 border-radius: 16px;
 overflow: hidden;
 border: 1px solid #eee;
 transition: all .3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.08); }
.blog-thumb {
 height: 200px;
 background: linear-gradient(135deg, #eef0ff, #dde0ff);
 position: relative;
}
.blog-thumb .date {
 position: absolute;
 bottom: 12px; left: 12px;
 background: #4f46e5;
 color: #fff;
 padding: 6px 14px;
 border-radius: 8px;
 font-size: .8rem;
 font-weight: 600;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: .8rem; color: #555; margin-bottom: 12px; }
.blog-body h3 { margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a:hover { color: #4f46e5; }
.blog-body p { font-size: .9rem; margin-bottom: 16px; }
.blog-body .read-more { color: #4f46e5; font-weight: 600; font-size: .9rem; }
.footer { background: #0f0f23; color: #777; padding: 60px 0 0; }
.footer-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
 gap: 40px;
 padding-bottom: 40px;
 border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { margin-bottom: 16px; display: inline-block; }
.footer-brand .logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
 width: 38px; height: 38px;
 border-radius: 50%;
 background: rgba(255,255,255,.08);
 display: flex; align-items: center; justify-content: center;
 transition: .25s;
 color: #777;
}
.footer-social a:hover { background: #4f46e5; color: #fff; }
.footer h4 { color: #fff; margin-bottom: 20px; font-size: 1rem; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: .9rem; color: #777; transition: color .2s; }
.footer-links a:hover { color: #4f46e5; }
.footer-contact li {
 display: flex;
 gap: 10px;
 margin-bottom: 14px;
 font-size: .9rem;
 align-items: flex-start;
}
.footer-contact .icon { color: #4f46e5; flex-shrink: 0; margin-top: 2px; }
.footer-newsletter p { font-size: .9rem; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
 flex: 1;
 padding: 12px 16px;
 border-radius: 8px;
 border: 1px solid rgba(255,255,255,.15);
 background: rgba(255,255,255,.06);
 color: #fff;
 font-size: .9rem;
}
.newsletter-form input::placeholder { color: #555; }
.newsletter-form button {
 padding: 12px 20px;
 background: #4f46e5;
 color: #fff;
 border: none;
 border-radius: 8px;
 cursor: pointer;
 font-weight: 600;
 transition: background .2s;
}
.newsletter-form button:hover { background: #4338ca; }
.footer-bottom {
 text-align: center;
 padding: 20px 0;
 font-size: .85rem;
 color: #555;
}
.page-header {
 padding: 140px 0 60px;
 background: linear-gradient(135deg, #f8f9ff, #eef0ff);
 text-align: center;
 position: relative;
 overflow: hidden;
}
.page-header::before {
 content: '';
 position: absolute;
 top: 50%; left: 50%;
 transform: translate(-50%, -50%);
 width: 500px; height: 500px;
 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="%234f46e5" stroke-width=".5" opacity=".08"/><circle cx="100" cy="100" r="50" fill="none" stroke="%234f46e5" stroke-width=".5" opacity=".06"/><circle cx="100" cy="100" r="20" fill="%234f46e5" opacity=".03"/></svg>') center/contain no-repeat;
 pointer-events: none;
 animation: float-slow 16s ease-in-out infinite;
}
.page-header::after {
 content: '';
 position: absolute;
 bottom: -30px; right: 10%;
 width: 200px; height: 200px;
 border: 2px solid rgba(79,70,229,.05);
 border-radius: 50%;
 pointer-events: none;
}
.page-header .section-label { margin-bottom: 8px; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 560px; margin: 0 auto; color: #555; }
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
 display: flex; gap: 16px; padding: 24px; background: #fafbff; border-radius: 12px; border: 1px solid #eee;
}
.contact-info-card .icon-box {
 width: 48px; height: 48px; background: #eef0ff; border-radius: 10px;
 display: flex; align-items: center; justify-content: center; color: #4f46e5; flex-shrink: 0;
}
.contact-info-card h4 { font-size: .95rem; margin-bottom: 4px; color: #1a1a2e; }
.contact-info-card p { font-size: .9rem; color: #555; }
.contact-form { background: #fff; border-radius: 16px; padding: 40px; border: 1px solid #eee; box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: #333; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
 width: 100%;
 padding: 12px 16px;
 border: 1px solid #ddd;
 border-radius: 8px;
 font-size: .92rem;
 font-family: inherit;
 transition: border-color .2s;
 background: #fafbff;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
 outline: none;
 border-color: #4f46e5;
 box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.about-page-content { padding: 80px 0; }
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-mission-text p { margin-bottom: 16px; font-size: 1.05rem; color: #4a4a4a; }
.about-visual {
 aspect-ratio: 4/3;
 background: linear-gradient(135deg, #eef0ff, #dde0ff);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.why-choose { padding: 80px 0; background: #fafbff; }
.why-choose .section-header { text-align: center; }
.why-choose .section-desc { margin-left: auto; margin-right: auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
 background: #fff; border-radius: 14px; padding: 32px 24px; text-align: center;
 border: 1px solid #eee; transition: .3s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.benefit-icon {
 width: 56px; height: 56px; margin: 0 auto 16px;
 background: #eef0ff; border-radius: 12px;
 display: flex; align-items: center; justify-content: center;
 color: #4f46e5; font-size: 1.3rem;
}
.benefit-card h3 { margin-bottom: 8px; }
.benefit-card p { font-size: .9rem; color: #555; }
.services-page-content { padding: 80px 0; }
.services-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-process { padding: 80px 0; background: #fafbff; }
.work-process .section-header { text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 48px; }
.process-step { text-align: center; position: relative; }
.step-number {
 width: 56px; height: 56px; margin: 0 auto 16px;
 background: #4f46e5; color: #fff; border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 font-weight: 700; font-size: 1.2rem;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: .9rem; color: #555; }
.modal-overlay {
 position: fixed; inset: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
 display: none; align-items: center; justify-content: center; z-index: 2000; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
 background: #fff; border-radius: 16px; padding: 40px; max-width: 520px; width: 100%;
 max-height: 90vh; overflow-y: auto; position: relative;
}
.modal-close {
 position: absolute; top: 16px; right: 16px; background: none; border: none;
 font-size: 1.4rem; cursor: pointer; color: #555; transition: .2s;
}
.modal-close:hover { color: #1a1a2e; }
.modal h2 { margin-bottom: 8px; font-size: 1.4rem; }
.modal .modal-desc { margin-bottom: 24px; font-size: .9rem; }
body::before {
 content: '';
 position: fixed;
 top: 0; left: 0;
 width: 100%; height: 100%;
 background:
 radial-gradient(ellipse at 10% 20%, rgba(79,70,229,.03) 0%, transparent 50%),
 radial-gradient(ellipse at 90% 80%, rgba(124,58,237,.03) 0%, transparent 50%);
 pointer-events: none;
 z-index: -1;
}
.about::before,
.blog::before {
 content: '';
 position: absolute;
 top: 20px; right: 20px;
 width: 100px; height: 100px;
 background-image: radial-gradient(circle, rgba(79,70,229,.06) 1.5px, transparent 1.5px);
 background-size: 14px 14px;
 pointer-events: none;
 z-index: 0;
}
.about::after {
 content: '';
 position: absolute;
 bottom: 40px; left: 30px;
 width: 80px; height: 80px;
 border: 2px solid rgba(79,70,229,.05);
 border-radius: 50%;
 pointer-events: none;
}
.wave-divider {
 width: 100%;
 height: 60px;
 overflow: hidden;
 position: relative;
}
.wave-divider svg {
 position: absolute;
 bottom: 0;
 width: 100%;
 height: 60px;
}
.wave-divider.flip svg { transform: scaleY(-1); }
.cta-banner .deco-line {
 position: absolute;
 width: 120px;
 height: 1px;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
 pointer-events: none;
}
.cta-banner .deco-line-1 { top: 30%; left: 5%; transform: rotate(-20deg); }
.cta-banner .deco-line-2 { bottom: 25%; right: 8%; transform: rotate(15deg); width: 80px; }
.cta-banner .deco-line-3 { top: 60%; left: 40%; transform: rotate(-5deg); width: 150px; }
.services::before {
 content: '';
 position: absolute;
 top: 0; left: 0;
 width: 150px; height: 150px;
 background: linear-gradient(135deg, rgba(79,70,229,.04) 0%, transparent 60%);
 pointer-events: none;
 z-index: 0;
}
.services::after {
 content: '';
 position: absolute;
 bottom: 0; right: 0;
 width: 200px; height: 200px;
 background: radial-gradient(circle at bottom right, rgba(79,70,229,.03) 0%, transparent 70%);
 pointer-events: none;
}
.faq::before {
 content: '';
 position: absolute;
 top: 40px; left: 40px;
 width: 60px; height: 60px;
 border: 2px solid rgba(79,70,229,.06);
 border-radius: 12px;
 transform: rotate(15deg);
 pointer-events: none;
}
.faq::after {
 content: '';
 position: absolute;
 bottom: 40px; right: 60px;
 width: 40px; height: 40px;
 background: rgba(79,70,229,.03);
 border-radius: 8px;
 transform: rotate(-10deg);
 pointer-events: none;
}
.hero::after {
 content: '';
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(rgba(79,70,229,.02) 1px, transparent 1px),
 linear-gradient(90deg, rgba(79,70,229,.02) 1px, transparent 1px);
 background-size: 80px 80px;
 pointer-events: none;
 z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.footer::before {
 content: '';
 position: absolute;
 top: 0; left: 50%;
 transform: translateX(-50%);
 width: 400px; height: 2px;
 background: linear-gradient(90deg, transparent, rgba(79,70,229,.3), transparent);
 pointer-events: none;
}
.footer { position: relative; }
.floating-shapes {
 position: absolute;
 inset: 0;
 overflow: hidden;
 pointer-events: none;
 z-index: 0;
}
.floating-shapes .shape {
 position: absolute;
 border-radius: 50%;
 opacity: .06;
 background: #4f46e5;
}
.floating-shapes .shape:nth-child(1) { width: 120px; height: 120px; top: 10%; left: 5%; animation: float-slow 14s ease-in-out infinite; }
.floating-shapes .shape:nth-child(2) { width: 80px; height: 80px; top: 60%; right: 8%; animation: float-slow 10s ease-in-out infinite reverse; }
.floating-shapes .shape:nth-child(3) { width: 50px; height: 50px; bottom: 15%; left: 20%; animation: float-slow 12s ease-in-out infinite 2s; border-radius: 30%; }
.floating-shapes .shape:nth-child(4) { width: 160px; height: 160px; top: 30%; right: 15%; animation: float-slow 16s ease-in-out infinite 1s; opacity: .03; }
.floating-shapes .shape:nth-child(5) { width: 40px; height: 40px; top: 80%; left: 60%; animation: float-slow 8s ease-in-out infinite 3s; border-radius: 20%; }
@keyframes float-slow {
 0%, 100% { transform: translateY(0) rotate(0deg); }
 50% { transform: translateY(-30px) rotate(8deg); }
}
.section-divider {
 display: flex;
 justify-content: center;
 gap: 8px;
 padding: 24px 0;
}
.section-divider span {
 width: 6px; height: 6px;
 border-radius: 50%;
 background: #4f46e5;
 opacity: .15;
}
.section-divider span:nth-child(2) { opacity: .3; width: 8px; height: 8px; }
.section-divider span:nth-child(3) { opacity: .15; }
.services { position: relative; }
.faq { position: relative; }
.blog { position: relative; }
.about { position: relative; }
.lang-switch {
 display: flex;
 align-items: center;
 gap: 4px;
 margin-left: 8px;
 background: #f0f0ff;
 border-radius: 8px;
 padding: 4px;
}
.lang-switch a {
 padding: 5px 10px;
 border-radius: 6px;
 font-size: .8rem;
 font-weight: 600;
 color: #555;
 transition: all .2s;
}
.lang-switch a.active { background: #4f46e5; color: #fff; }
.lang-switch a:hover:not(.active) { color: #4f46e5; }
[dir="rtl"] { direction: rtl; text-align: right; }
[dir="rtl"] .header .container { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .nav-cta { margin-left: 0; margin-right: 16px; }
[dir="rtl"] .lang-switch { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .hero .container { direction: rtl; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-buttons { justify-content: flex-start; }
[dir="rtl"] .hero-social { justify-content: flex-start; }
[dir="rtl"] .about .container { direction: rtl; }
[dir="rtl"] .about-points li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .about-points li .check { margin-left: 12px; margin-right: 0; }
[dir="rtl"] .service-card { text-align: right; }
[dir="rtl"] .footer-grid { direction: ltr; }
[dir="rtl"] .footer-grid > div { direction: rtl; text-align: right; }
[dir="rtl"] .footer-contact li { text-align: right; }
[dir="rtl"] .footer-social { justify-content: flex-end; }
[dir="rtl"] .newsletter-form { flex-direction: row; }
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .contact-info-card { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-info-card .icon-box { margin-left: 16px; margin-right: 0; }
[dir="rtl"] .faq-question { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .pricing-features li { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .blog-meta { flex-direction: row-reverse; }
[dir="rtl"] .about-mission { direction: rtl; }
[dir="rtl"] .benefits-grid { direction: rtl; }
[dir="rtl"] .benefit-card { text-align: center; }
[dir="rtl"] .process-steps { direction: rtl; }
[dir="rtl"] .services-full-grid { direction: rtl; }
[dir="rtl"] .newsletter-form { flex-direction: row-reverse; }
[dir="rtl"] .section-header { text-align: center; }
[dir="rtl"] .page-header { text-align: center; }
[dir="rtl"] .hamburger { order: -1; }
@media (max-width: 968px) {
 .hero .container { grid-template-columns: 1fr; text-align: center; }
 .hero-content p { margin-left: auto; margin-right: auto; }
 .hero-buttons { justify-content: center; }
 .hero-social { justify-content: center; }
 .hero-visual { order: -1; }
 .hero-graphic { max-width: 300px; }
 .about .container { grid-template-columns: 1fr; }
 .about-image { max-height: 300px; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 .contact-grid { grid-template-columns: 1fr; }
 .about-mission { grid-template-columns: 1fr; }
 .benefits-grid { grid-template-columns: 1fr 1fr; }
 .services-full-grid { grid-template-columns: 1fr 1fr; }
 .process-steps { grid-template-columns: 1fr 1fr; }
 .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
 .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid #eee; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
 .nav-links.open { display: flex; }
 .hamburger { display: flex; }
 .nav-cta { margin-left: 0; }
 .footer-grid { grid-template-columns: 1fr; }
 .form-row { grid-template-columns: 1fr; }
 .benefits-grid { grid-template-columns: 1fr; }
 .services-full-grid { grid-template-columns: 1fr; }
 .process-steps { grid-template-columns: 1fr; }
 .blog-grid { grid-template-columns: 1fr; }
}

/* Accessibility fixes */
.hamburger { min-width: 44px; min-height: 44px; }
.nav-links a { min-height: 44px; display: inline-flex; align-items: center; }
.hero-social a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
footer a { min-height: 44px; display: inline-flex; align-items: center; }
