:root {
--brand-primary: #5C51FF;
--brand-dark: #111111;
--brand-text: #333333;
--brand-border: #F3F4F6;
--brand-bg-light: #F4F5F7;
--brand-white: #FFFFFF;
--brand-gray: #666666;
--brand-success: #10B981;
--brand-danger: #F84F4F;
--side-margin: 250px;
--section-padding: 60px;
}
body {
font-family: 'Inter', sans-serif;
-webkit-font-smoothing: antialiased;
background-color: var(--brand-white);
color: var(--brand-text);
}
.custom-container {
padding-left: var(--side-margin);
padding-right: var(--side-margin);
width: 100%;
}
.header-roundsite {
background-color: var(--brand-white);
border-bottom: 1px solid var(--brand-border);
padding: 14px 0;
position: sticky;
top: 0;
z-index: 1050;
transition: padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.header-roundsite.scrolled {
padding: 8px 0;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border-bottom-color: transparent;
}
.header-roundsite .navbar-brand {
display: flex;
align-items: center;
gap: 10px;
}
.header-roundsite .brand-name {
font-size: 22px;
font-weight: 700;
color: var(--brand-dark);
letter-spacing: -0.4px;
}
.header-roundsite .navbar-nav {
gap: 36px;
}
.header-roundsite .nav-link {
color: var(--brand-text) !important;
font-size: 15px;
font-weight: 500;
padding: 0 !important;
display: flex;
align-items: center;
gap: 6px;
transition: none !important;
}
.btn-primary {
background-color: var(--brand-primary) !important;
border-color: var(--brand-primary) !important;
color: var(--brand-white) !important;
font-size: 15px;
font-weight: 600;
padding: 10px 22px;
border-radius: 6px;
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: none !important;
box-shadow: none !important;
border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background-color: var(--brand-primary) !important;
color: var(--brand-white) !important;
}
.btn-arrow {
font-size: 13px;
transition: transform 0.2s ease-out !important;
}
.btn-primary:hover .btn-arrow {
transform: translateX(4px);
}
section {
padding: var(--section-padding) 0;
}
.section-tag {
font-size: 16px;
font-weight: 500;
color: var(--brand-gray);
margin-bottom: 20px;
display: block;
}
.hero-section {
text-align: center;
}
.hero-title {
font-size: 84px;
font-weight: 700;
color: var(--brand-dark);
line-height: 1.05;
letter-spacing: -3px;
margin-bottom: 32px;
}
.hero-subtitle {
font-size: 22px;
font-weight: 400;
color: var(--brand-gray);
max-width: 620px;
margin: 0 auto 48px auto;
line-height: 1.5;
}
.features-section {
text-align: center;
}
.features-title {
font-size: 64px;
font-weight: 700;
letter-spacing: -2px;
line-height: 1.1;
margin-bottom: 24px;
color: var(--brand-dark);
}
.features-description {
font-size: 18px;
color: var(--brand-gray);
max-width: 580px;
margin: 0 auto 60px auto;
line-height: 1.6;
}
.stats-grid {
display: flex;
justify-content: center;
align-items: center;
gap: 48px;
margin-bottom: 80px;
}
.stat-item {
display: flex;
align-items: center;
gap: 16px;
}
.stat-icon {
font-size: 32px;
color: var(--brand-primary);
line-height: 1;
}
.stat-text {
display: flex;
align-items: baseline;
gap: 12px;
}
.stat-value {
font-size: 44px;
font-weight: 500;
color: var(--brand-dark);
letter-spacing: -1px;
line-height: 1;
}
.stat-label {
font-size: 16px;
font-weight: 500;
color: var(--brand-gray);
}
.feature-slider {
width: 100%;
border-radius: 24px;
margin-bottom: 5px;
overflow: hidden;
background-color: transparent;
transform: translateZ(0);
}
.feature-slider .carousel-item {
transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.feature-slider img {
width: 100%;
height: auto;
object-fit: contain;
display: block;
}
.ticker-wrap {
width: 100%;
overflow: hidden;
background: var(--brand-dark);
padding: 30px 0;
border-radius: 24px;
}
.ticker {
display: flex;
white-space: nowrap;
animation: ticker-move 30s linear infinite;
}
.ticker-item {
display: flex;
align-items: center;
gap: 15px;
padding: 0 40px;
color: var(--brand-white);
font-size: 24px;
font-weight: 600;
}
.ticker-img {
width: 40px;
height: 40px;
border-radius: 8px;
object-fit: cover;
}
@keyframes ticker-move {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.key-features-section {
background-color: var(--brand-bg-light);
}
.section-header-center {
text-align: center;
margin-bottom: 64px;
}
.key-feature-card {
background-color: var(--brand-white);
border-radius: 16px;
padding: 40px;
height: 100%;
text-align: left;
}
.key-feature-card .card-icon {
font-size: 32px;
color: var(--brand-primary);
margin-bottom: 24px;
display: inline-block;
line-height: 1;
}
.key-feature-card .card-title {
font-size: 20px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 12px;
letter-spacing: -0.5px;
}
.key-feature-card .card-text {
font-size: 15px;
color: var(--brand-gray);
line-height: 1.6;
margin: 0;
}
.process-section {
background-color: var(--brand-white);
}
.process-grid {
position: relative;
z-index: 1;
}
.process-grid::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 0%, var(--brand-primary) 50%, transparent 100%);
z-index: -1;
opacity: 0.6;
transform: translateY(-50%);
}
.process-card {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 12px;
padding: 48px 40px;
height: 100%;
text-align: left;
display: flex;
flex-direction: column;
}
.process-text {
font-size: 16px;
color: var(--brand-gray);
line-height: 1.6;
margin-bottom: 32px;
flex-grow: 1;
}
.process-icon {
font-size: 36px;
color: var(--brand-dark);
margin-bottom: 24px;
display: inline-block;
line-height: 1;
}
.process-title {
font-size: 28px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 16px;
letter-spacing: -1px;
}
.process-list {
list-style: none;
padding: 0;
margin: 0;
}
.process-list-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 15px;
color: var(--brand-dark);
font-weight: 500;
margin-bottom: 16px;
}
.process-list-item:last-child {
margin-bottom: 0;
}
.process-list-icon {
color: var(--brand-success);
font-size: 20px;
}
.gallery-section {
background-color: var(--brand-white);
}
.gallery-container {
border-top: 1px solid var(--brand-border);
}
.gallery-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 40px 0;
border-bottom: 1px solid var(--brand-border);
gap: 40px;
position: relative;
}
.gallery-content {
flex: 1;
max-width: 640px;
}
.gallery-item-title {
font-size: 40px;
font-weight: 600;
color: var(--brand-dark);
margin-bottom: 16px;
letter-spacing: -1px;
line-height: 1.1;
}
.gallery-item-desc {
font-size: 16px;
color: var(--brand-gray);
line-height: 1.6;
margin-bottom: 0;
}
.gallery-tags-wrapper {
display: grid;
grid-template-rows: 0fr;
opacity: 0;
transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-tags-inner {
overflow: hidden;
}
.gallery-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding-top: 24px;
}
.gallery-tag {
background-color: #EBEBEB;
color: #333333;
font-size: 14px;
font-weight: 500;
padding: 8px 18px;
border-radius: 100px;
white-space: nowrap;
}
.gallery-image-wrapper {
width: 200px;
height: 130px;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
position: relative;
transform: translateZ(0);
will-change: width, height;
transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
flex-shrink: 0;
}
.gallery-img {
width: 100%;
height: 100%;
object-fit: cover;
filter: grayscale(100%);
transform: scale(1.02);
transition: filter 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
.gallery-row:hover .gallery-tags-wrapper {
grid-template-rows: 1fr;
opacity: 1;
}
.gallery-row:hover .gallery-image-wrapper {
width: 480px;
height: 300px;
}
.gallery-row:hover .gallery-img {
filter: grayscale(0%);
transform: scale(1);
}
}
.lightbox-modal {
backdrop-filter: blur(12px);
background-color: rgba(0, 0, 0, 0.85);
}
.lightbox-modal .modal-content {
background: transparent;
border: none;
box-shadow: none;
}
.lightbox-close-btn {
position: fixed;
top: 24px;
right: 24px;
z-index: 1080;
background: #FFFFFF;
color: #111111;
border: none;
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 20px;
transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.lightbox-close-btn:hover {
transform: scale(1.05);
background-color: var(--brand-primary);
color: var(--brand-white);
}
.pricing-section {
background-color: var(--brand-bg-light);
}
.pricing-card {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 12px;
padding: 40px 32px;
margin-top: 24px;
margin-bottom: 24px;
height: calc(100% - 48px);
display: flex;
flex-direction: column;
text-align: center;
position: relative;
box-shadow: none;
}
.pricing-card.highlight {
border: 2px solid var(--brand-primary);
padding: 64px 32px;
margin-top: 0;
margin-bottom: 0;
height: 100%;
}
.pricing-badge {
position: absolute;
top: -16px;
left: 50%;
transform: translateX(-50%);
background-color: var(--brand-danger);
color: var(--brand-white);
font-size: 14px;
font-weight: 600;
padding: 8px 20px;
border-radius: 6px;
white-space: nowrap;
}
.pricing-title {
font-size: 20px;
font-weight: 500;
color: var(--brand-dark);
margin-bottom: 16px;
width: 100%;
}
.pricing-price {
font-size: 48px;
font-weight: 700;
color: var(--brand-dark);
margin-bottom: 16px;
line-height: 1;
letter-spacing: -1px;
width: 100%;
}
.pricing-desc {
font-size: 14px;
color: var(--brand-gray);
margin-bottom: 32px;
line-height: 1.6;
min-height: 48px;
width: 100%;
display: flex;
align-items: flex-start;
justify-content: center;
}
.pricing-divider {
height: 1px;
background-color: var(--brand-border);
margin-bottom: 32px;
width: 100%;
}
.pricing-list-features {
list-style: none;
padding: 0;
margin: 0 0 40px 0;
text-align: left;
width: 100%;
}
.pricing-list-feature {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
color: var(--brand-text);
margin-bottom: 16px;
font-weight: 500;
}
.pricing-list-feature:last-child {
margin-bottom: 0;
}
.pricing-feature-icon {
color: var(--brand-success);
font-size: 20px;
line-height: 1.1;
}
.pricing-link {
color: var(--brand-primary);
font-weight: 600;
font-size: 15px;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
gap: 4px;
transition: gap 0.2s ease;
}
.pricing-link:hover, .pricing-link:focus {
gap: 8px;
color: var(--brand-primary);
}
.faq-section {
background-color: var(--brand-white);
}
.faq-sticky-wrap {
position: sticky;
top: 120px;
}
.faq-title {
font-size: 56px;
font-weight: 700;
color: var(--brand-dark);
line-height: 1.1;
letter-spacing: -2px;
margin-bottom: 24px;
}
.faq-desc {
font-size: 18px;
color: var(--brand-gray);
margin-bottom: 40px;
line-height: 1.6;
max-width: 400px;
}
.faq-accordion .accordion-item {
background-color: var(--brand-white);
border: 1px solid var(--brand-border);
border-radius: 8px !important;
margin-bottom: 16px;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-accordion .accordion-item:last-child {
margin-bottom: 0;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
border-color: var(--brand-primary);
background-color: #F4F3FF;
}
.faq-accordion .accordion-button {
font-family: 'Inter', sans-serif;
font-size: 18px;
font-weight: 500;
color: var(--brand-dark);
background-color: transparent;
padding: 24px 32px;
box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) {
color: var(--brand-primary);
background-color: transparent;
}
.faq-accordion .accordion-body {
padding: 0 32px 32px 32px;
font-size: 16px;
color: var(--brand-text);
line-height: 1.6;
background-color: transparent;
}
.faq-accordion .accordion-button::after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111111'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transition: transform 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed):after {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235C51FF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
transform: rotate(-180deg);
}
.footer-roundsite {
background-color: var(--brand-dark);
color: var(--brand-white);
padding: 80px 0 32px 0;
}
.footer-roundsite .footer-title {
font-size: 20px;
font-weight: 700;
color: var(--brand-white);
margin-bottom: 24px;
letter-spacing: -0.5px;
}
.footer-roundsite .footer-desc {
font-size: 15px;
color: #A0A0A0;
line-height: 1.6;
margin-bottom: 0;
}
.footer-roundsite .footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-roundsite .footer-links li {
margin-bottom: 16px;
}
.footer-roundsite .footer-links li:last-child {
margin-bottom: 0;
}
.footer-roundsite .footer-links a {
color: #A0A0A0;
text-decoration: none;
font-size: 15px;
transition: color 0.2s ease;
}
.footer-roundsite .footer-links a:hover,
.footer-roundsite .footer-links a:focus {
color: var(--brand-primary);
}
.footer-roundsite .footer-socials {
display: flex;
gap: 12px;
}
.footer-roundsite .footer-socials a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border: 1px solid #333333;
border-radius: 50%;
color: var(--brand-white);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: all 0.2s ease;
}
.footer-roundsite .footer-socials a:hover,
.footer-roundsite .footer-socials a:focus {
background-color: var(--brand-primary);
border-color: var(--brand-primary);
}
.footer-roundsite .footer-newsletter-wrap {
margin-top: 24px;
}
.footer-roundsite .footer-newsletter {
display: flex;
background-color: var(--brand-white);
border-radius: 6px;
padding: 6px;
gap: 6px;
}
.footer-roundsite .footer-newsletter input {
flex: 1;
border: none;
background: transparent;
padding: 10px 16px;
font-size: 15px;
color: var(--brand-dark);
outline: none;
min-width: 0;
}
.footer-roundsite .footer-newsletter input::placeholder {
color: #888888;
}
.footer-roundsite .footer-newsletter button {
background-color: var(--brand-dark);
color: var(--brand-white);
border: none;
border-radius: 4px;
padding: 10px 24px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s ease;
}
.footer-roundsite .footer-newsletter button:hover,
.footer-roundsite .footer-newsletter button:focus {
background-color: var(--brand-primary);
}
.footer-roundsite .footer-bottom {
border-top: 1px solid #222222;
margin-top: 64px;
padding-top: 32px;
}
.footer-roundsite .footer-bottom .copyright {
font-size: 14px;
color: #A0A0A0;
}
.footer-roundsite .footer-bottom-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-roundsite .footer-bottom-links a {
font-size: 14px;
color: #A0A0A0;
text-decoration: none;
transition: color 0.2s ease;
}
.footer-roundsite .footer-bottom-links a:hover,
.footer-roundsite .footer-bottom-links a:focus {
color: var(--brand-white);
}
@media (max-width: 1399px) {
:root { --side-margin: 150px; }
}
@media (max-width: 1199px) {
:root {
--side-margin: 80px;
--section-padding: 100px;
}
.hero-title { font-size: 72px; letter-spacing: -2px; }
.features-title { font-size: 56px; }
}
@media (max-width: 991px) {
:root {
--side-margin: 40px;
--section-padding: 80px;
}
.hero-title { font-size: 56px; }
.hero-subtitle { font-size: 20px; }
.features-title { font-size: 48px; letter-spacing: -1.5px; }
.stats-grid { flex-wrap: wrap; gap: 32px; margin-bottom: 60px; }
.stat-value { font-size: 36px; }
.process-grid::before { display: none; }
.pricing-card {
margin-top: 0;
margin-bottom: 0;
height: 100%;
padding: 40px 32px;
}
.pricing-card.highlight {
padding: 40px 32px;
}
.faq-sticky-wrap {
position: relative;
top: 0;
margin-bottom: 48px;
}
.faq-title { font-size: 48px; }
.footer-roundsite { padding: 60px 0 30px 0; }
.footer-roundsite .footer-bottom { margin-top: 40px; text-align: center; }
.footer-roundsite .footer-bottom .text-md-end { text-align: center !important; margin-top: 16px; }
.gallery-row {
flex-direction: column;
align-items: flex-start;
gap: 24px;
}
.gallery-image-wrapper {
width: 100% !important;
height: 300px !important;
}
.gallery-img {
filter: grayscale(0%);
}
.gallery-tags-wrapper {
grid-template-rows: 1fr;
opacity: 1;
}
}
@media (max-width: 767px) {
:root {
--side-margin: 20px;
--section-padding: 60px;
}
.hero-title { font-size: 42px; letter-spacing: -1px; margin-bottom: 24px; }
.hero-subtitle { font-size: 18px; margin-bottom: 32px; }
.features-title { font-size: 36px; letter-spacing: -1px; }
.features-description { font-size: 16px; margin-bottom: 40px; }
.feature-slider { border-radius: 16px; }
.ticker-wrap { padding: 20px 0; border-radius: 16px; }
.ticker-item { font-size: 18px; padding: 0 20px; }
.ticker-img { width: 30px; height: 30px; }
.stats-grid { flex-direction: column; align-items: center; gap: 24px; margin-bottom: 40px; }
.section-header-center { margin-bottom: 40px; }
.key-feature-card, .process-card { padding: 24px; }
.pricing-card, .pricing-card.highlight { padding: 32px 24px; }
.pricing-price { font-size: 40px; }
.faq-title { font-size: 36px; margin-bottom: 16px; }
.faq-accordion .accordion-button { padding: 20px; font-size: 16px; }
.faq-accordion .accordion-body { padding: 0 20px 20px 20px; }
.footer-roundsite .footer-newsletter { flex-direction: column; padding: 12px; }
.footer-roundsite .footer-newsletter button { width: 100%; padding: 12px; }
.footer-roundsite .footer-socials { margin-bottom: 32px; }
.gallery-item-title { font-size: 28px; }
.gallery-tag { font-size: 13px; padding: 6px 14px; }
.lightbox-close-btn {
top: 16px;
right: 16px;
width: 40px;
height: 40px;
font-size: 18px;
}
}
@media (max-width: 991px) {
.header-roundsite .navbar-collapse {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: var(--brand-white);
z-index: 1060;
display: flex !important;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
visibility: hidden;
transform: translateY(-20px);
transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.header-roundsite .navbar-collapse.show-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.header-roundsite .navbar-nav {
align-items: center;
gap: 32px;
}
.header-roundsite .nav-link {
font-size: 24px;
font-weight: 600;
}
.navbar-toggler {
border: none;
background: transparent;
padding: 0;
width: 32px;
height: 24px;
position: relative;
z-index: 1070;
cursor: pointer;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
content: '';
position: absolute;
width: 100%;
height: 2px;
background-color: var(--brand-dark);
transition: transform 0.3s ease, background-color 0.3s ease, top 0.3s ease;
left: 0;
}
.navbar-toggler-icon {
background-image: none;
top: 50%;
transform: translateY(-50%);
}
.navbar-toggler-icon::before {
top: -8px;
}
.navbar-toggler-icon::after {
top: 8px;
}
.navbar-toggler.is-active .navbar-toggler-icon {
background-color: transparent;
}
.navbar-toggler.is-active .navbar-toggler-icon::before {
top: 0;
transform: rotate(45deg);
}
.navbar-toggler.is-active .navbar-toggler-icon::after {
top: 0;
transform: rotate(-45deg);
}
}
.auth-section {
padding: 6rem 0;
}