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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

h1 {
    font-size: 48px;
    font-weight: 400;
}
h2 {
    font-size: 48px;
    font-weight: 700;
}
h3 {font-size: 30px;}
h4 {font-size: 24px;}

header {
    background-color: #F6EBD9;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 20px 50px;
    max-width: 1400px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(246, 235, 217, 0.3);
}

.logo {
    height: 25px;
    width: auto;
    display: block;
}

.logo img {
    height: 100%;
    width: auto;
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1D57F6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease-in-out;
}

nav a:hover::after {
    transform: scaleX(1);
}

nav a:hover {
    color: #333;
}

.header-cta {
    justify-self: end;
}

.wsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #090909;
    color: #fff;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.wsp-btn:hover {
    background-color: #333;
}

.wsp-btn svg {
    stroke: #ffffff;
}

.hero {
    margin-top: 70px;
    text-align: center;
    padding: 160px 50px;
    background-color: #F6EBD9;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero h2 {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
}

.hero-subtext {
    max-width: 680px;
    margin: 20px auto 0 auto;
    font-size: 18px;
    line-height: 1.5;
    color: #4A4A4A;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1D57F6;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(29, 87, 246, 0.25);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
}

.hero-cta-primary:hover {
    background-color: #1243ca;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(29, 87, 246, 0.35);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #090909;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-cta-secondary:hover {
    background-color: #2b2b2b;
    transform: translateY(-2px);
}

.hero-trust-badge {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-trust-badge .stars {
    color: #FE4A00;
    letter-spacing: 2px;
    font-size: 15px;
}

.hero-trust-badge p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.hero-headline {
    font-size: 64px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.2;
    font-family: 'Syne', sans-serif;
}

.word-wrapper {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    vertical-align: bottom;
    height: 1.15em;
}

.word-clip {
    overflow: hidden;
    height: 100%;
}

.word-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s ease;
    will-change: transform;
}

.word-el {
    position: relative;
    height: 1.15em;
    line-height: 1.15;
    font-weight: 700;
}

.word-text {
    display: inline;
    white-space: nowrap;
}

.word-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 4px;
    width: 0;
    transform: translateX(-50%);
    transition: width 0.5s ease, background-color 0.4s ease;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.tag {
    display: inline-block;
    padding: 10px 24px;
    color: #090909;
    font-size: 28px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.problem-solution-section {
    padding: 60px 50px;
    background-color: #F6EBD9;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    grid-column: span 6;
    background-color: #111;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.05);
}

.problem-card .card-icon {
    color: #FE4A00;
}

.solution-card .card-icon {
    color: #00A1F1;
}

.solution-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #00A1F1;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.card p {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 24px;
    line-height: 1.5;
}

.card-list {
    list-style: none;
    margin-bottom: 30px;
}

.card-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #ccc;
}

.problem-card .card-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #FE4A00;
    font-weight: bold;
}

.solution-card .card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00A1F1;
    font-weight: bold;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 13px;
    color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.5px;
}

.card-footer .arrow {
    color: #00A1F1;
    font-size: 18px;
}

.content-section {
    padding: 80px 50px;
    text-align: center;
    background-color: #fff;
}

.content-section h2,
.content-section p {
    color: #333;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.reels-section {
    scroll-margin-top: 90px;
    padding: 40px 50px;
    text-align: center;
    background-color: #fff;
}

.reels-header {
    margin-bottom: 60px;
}

.reels-header h2 {
    font-size: 36px;
    color: #090909;
    margin-bottom: 12px;
    font-weight: 500;
}

.reels-header p {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.reels-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}

.reel-card {
    position: relative;
    width: 18%;
    max-width: 240px;
    aspect-ratio: 9 / 16;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 24px;
    overflow: hidden;
    background-color: transparent;
    cursor: pointer;
}

.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    outline: none;
    border: none;
    border-radius: 24px;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border-radius: 24px;
}

.reel-watch-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #1d57f5;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 3;
}

.reel-card:hover .reel-watch-text {
    transform: translateY(0);
}

.case-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 96px;
    padding: 32px 14px 14px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
    pointer-events: none;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.case-meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    transition: transform 0.3s ease;
}

.reel-card:hover .case-meta-text {
    transform: translateY(-32px);
}

.case-brand {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.case-metric {
    font-size: 12px;
    font-weight: 500;
    color: #bcd0ff;
}

.reels-footer {
    margin-top: 160px;
    position: relative;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 90;
    pointer-events: none;
}

.reels-footer p,
.reels-footer span {
    font-size: 15px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    pointer-events: auto;
}

.instagram-link img {
    width: 25px;
    height: 25px;
    display: block;
}

.reels-footer a {
    color: #090909;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.reels-footer a:hover {
    opacity: 0.6;
}

.trust-bar {
    padding: 44px 50px;
    background-color: #F6EBD9;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-bar-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a7a63;
    margin-bottom: 24px;
}

.trust-bar-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #a5957d;
    letter-spacing: 0.02em;
    opacity: 0.85;
    transition: opacity 0.3s, color 0.3s;
}

.trust-logo:hover {
    opacity: 1;
    color: #090909;
}

.cta-section {
    padding: 100px 50px;
    text-align: center;
    background-color: #0d0d0d;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 18px;
    color: #aaa;
    font-weight: 300;
    margin-bottom: 36px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #fff;
    color: #0d0d0d;
    padding: 14px 36px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s, transform 0.25s ease;
}

.cta-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-wsp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s, border-color 0.3s;
}

.cta-wsp-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-secure {
    font-size: 14px;
    color: #777;
    margin-top: 20px;
}

.about-section {
    padding: 100px 50px;
    background-color: #0f1014;
    color: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.about-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #FE4A00;
    margin-bottom: 16px;
}

.about-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-lead {
    font-size: 17px;
    line-height: 1.6;
    color: #b8bcc8;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    background-color: #171a21;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 32px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

.about-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #a6abb8;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: center;
}

.stat-item {
    padding: 24px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-number {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #8a8f9e;
    font-weight: 300;
}

.testimonials-section {
    padding: 100px 50px;
    background-color: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.testimonials-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #00A1F1;
    margin-bottom: 16px;
}

.testimonials-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #090909;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: #F6EBD9;
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    font-family: 'Syne', sans-serif;
    font-size: 64px;
    line-height: 0.6;
    font-weight: 700;
    color: #090909;
    opacity: 0.15;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 4px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 15px;
    color: #111;
}

.author-info span {
    font-size: 13px;
    color: #777;
}

.faq-section {
    padding: 100px 50px;
    background-color: #F6EBD9;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1D57F6;
    margin-bottom: 16px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #090909;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item.open {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question i {
    font-size: 18px;
    color: #1D57F6;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-weight: 300;
}

.video-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 220;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.video-modal-card {
    position: relative;
    width: auto;
    max-width: 90vw;
    height: 82vh;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    overflow: hidden;
    background-color: #000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal-overlay.open .video-modal-card {
    transform: scale(1);
}

.video-modal-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.video-modal-card .modal-close {
    color: #fff;
}

.video-modal-card .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    padding: 40px 36px;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background-color 0.2s, color 0.2s;
}

.modal-close:hover {
    background-color: #f1f1f1;
    color: #111;
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1D57F6;
    background-color: rgba(29, 87, 246, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.modal-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.qualify-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d9dbe3;
    background-color: #fafbfc;
    font-size: 14px;
    font-family: inherit;
    color: #111;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 38px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1D57F6;
    box-shadow: 0 0 0 3px rgba(29, 87, 246, 0.15);
}

.modal-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #1D57F6;
    color: #fff;
    padding: 15px 24px;
    border-radius: 100px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    transition: background-color 0.25s, transform 0.25s ease;
}

.modal-submit-btn:hover {
    background-color: #1243ca;
    transform: translateY(-2px);
}

.form-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    line-height: 1.4;
}

    .process-section {
        scroll-margin-top: 90px;
        padding: 100px 50px;
        background-color: #f5ead7;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    margin-bottom: 50px;
    text-align: center;
}

.process-heading {
    font-size: 36px;
    font-weight: 500;
    color: #090909;
    line-height: 1.3;
    margin-bottom: 8px;
}

.process-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: #fff;
    padding: 32px;
    border-bottom: 4px solid var(--step-clr, #00A1F1);
    display: flex;
    flex-direction: column;
}

.process-step .step-solution {
    margin-top: auto;
}

.step-number {
    font-size: 13px;
    font-weight: 700;
    color: var(--step-clr, #00A1F1);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.step-solution {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.step-solution strong {
    color: var(--step-clr, #00A1F1);
    font-weight: 600;
}

.services-section {
    padding: 100px 50px;
    background-color: #fff;
}

.services-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.service-item {
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.service-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.service-icon {
    font-size: 28px;
    vertical-align: middle;
    margin-right: 6px;
    line-height: 1;
}

.service-includes {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.includes-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 14px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.includes-title::after {
    content: '▼';
    font-size: 9px;
    transition: transform 0.3s ease;
}

.service-includes.open .includes-title::after {
    transform: rotate(180deg);
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.service-includes.open .includes-list {
    max-height: 500px;
}

.includes-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.includes-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 18px;
    color: var(--clr, #333);
    line-height: 1.4;
}

.includes-list li strong {
    font-weight: 600;
    color: #333;
}



.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #444;
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: #090909;
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #F6EBD9;
    padding: 30px 50px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 99;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.mobile-menu ul a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .reels-grid {
        justify-content: center;
    }
    .reel-card {
        width: calc((100% - 40px) / 3);
        max-width: 280px;
    }
}

@media (max-width: 850px) {
    nav,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        justify-self: end;
    }

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }

    .reel-card {
        width: calc((100% - 20px) / 2);
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .content-section {
        padding: 40px 20px;
    }

    .reels-section {
        scroll-margin-top: 90px;
        padding: 60px 20px;
    }

    .reels-header h2 {
        font-size: 28px;
    }

    .reels-grid {
        justify-content: center;
    }
    
    .reel-card {
        width: calc((100% - 20px) / 2);
        max-width: 320px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-inner {
        grid-template-columns: 1fr;
    }

    .service-title {
        font-size: 28px;
    }

    .service-desc {
        font-size: 15px;
    }

    .service-icon {
        font-size: 24px;
    }

    .includes-title {
        font-size: 12px;
    }

    .includes-list li {
        font-size: 14px;
    }

    .process-section {
        scroll-margin-top: 90px;
        padding: 60px 20px;
    }

    .process-heading {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        padding: 24px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-desc,
    .step-solution {
        font-size: 14px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-header h2 {
        font-size: 28px;
    }

    .about-lead {
        font-size: 15px;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 40px;
    }

    .trust-bar {
        padding: 40px 20px;
    }

    .trust-bar-logos {
        gap: 24px;
    }

    .trust-logo {
        font-size: 18px;
    }

    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 14px;
    }

    .video-modal-card {
        width: auto;
        max-width: 92vw;
        height: 72vh;
        aspect-ratio: 9 / 16;
    }

    .modal-card {
        padding: 32px 24px;
    }

    .hero-subtext {
        font-size: 16px;
    }

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

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badge {
        flex-direction: column;
        text-align: center;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}
