.gtp-content-wrapper{
--accent1:#7c3aed;
--accent2:#2563eb;
--accent3:#06b6d4;
--text:#111111;
--muted:#5f6470;
--white:#ffffff;
--soft:#f8fafc;
--border:#e8edf5;
--shadow:0 15px 40px rgba(37,99,235,.08);
font-family:Arial,Helvetica,sans-serif;
width:100%;
overflow:hidden;
position:relative;
}

.gtp-content-wrapper .gtp-container{
max-width:1200px;
margin:0 auto;
}

.gtp-content-wrapper .gtp-section{
position:relative;
overflow:hidden;
}

.gtp-content-wrapper .gtp-white{
background:#fff;
}

.gtp-content-wrapper .gtp-soft{
background:#f8fafc;
}

.gtp-content-wrapper .gtp-heading{
text-align:center;
font-weight:800;
line-height:1.2;
margin:0 0 15px;
color:#000 !important;
}

.gtp-content-wrapper .gtp-intro{
text-align:center;
max-width:860px;
margin:0 auto 40px;
color:var(--muted);
line-height:1.8;
}

.gtp-content-wrapper .gtp-grid{
display:grid;
align-items:stretch;
}

.gtp-content-wrapper .gtp-card{
background:#fff;
border:1px solid var(--border);
border-radius:24px;
padding:30px;
box-shadow:var(--shadow);
position:relative;
transition:.35s ease;
height:100%;
overflow:hidden;
display:flex;
flex-direction:column;
}

.gtp-content-wrapper .gtp-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 45px rgba(37,99,235,.12);
}

.gtp-content-wrapper .gtp-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(90deg,var(--accent1),var(--accent2),var(--accent3));
}

.gtp-content-wrapper .gtp-card h3{
margin:0 0 12px;
font-weight:700;
line-height:1.3;
color:#000 !important;
}

.gtp-content-wrapper .gtp-card p{
margin:0;
line-height:1.8;
color:var(--muted);
}

.gtp-content-wrapper .gtp-icon{
width:56px;
height:56px;
border-radius:18px;
background:linear-gradient(135deg,var(--accent1),var(--accent2));
margin-bottom:18px;
position:relative;
}

.gtp-content-wrapper .gtp-icon:before{
content:"";
position:absolute;
width:20px;
height:20px;
background:#fff;
border-radius:50%;
top:18px;
left:18px;
}

.gtp-content-wrapper .gtp-steps{
display:grid;
gap:24px;
}

.gtp-content-wrapper .gtp-step{
background:#fff;
border:1px solid var(--border);
border-radius:26px;
padding:30px;
box-shadow:var(--shadow);
position:relative;
transition:.35s ease;
}

.gtp-content-wrapper .gtp-step:hover{
transform:translateY(-5px);
}

.gtp-content-wrapper .gtp-step:before{
content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:6px;
background:linear-gradient(var(--accent1),var(--accent2));
}

.gtp-content-wrapper .gtp-step-inner{
display:flex;
gap:24px;
align-items:flex-start;
}

.gtp-content-wrapper .gtp-number{
width:72px;
height:72px;
border-radius:50%;
background:linear-gradient(135deg,var(--accent1),var(--accent2));
color:#fff;
font-size:24px;
font-weight:800;
display:flex;
align-items:center;
justify-content:center;
flex-shrink:0;
}

.gtp-content-wrapper .gtp-glow{
position:absolute;
width:280px;
height:280px;
border-radius:50%;
background:radial-gradient(circle,rgba(124,58,237,.10),transparent 70%);
pointer-events:none;
}

.gtp-content-wrapper .gtp-glow.one{
right:-120px;
top:-120px;
}

.gtp-content-wrapper .gtp-glow.two{
left:-120px;
bottom:-120px;
}

.gtp-content-wrapper .gtp-reveal{
opacity:0;
transform:translateY(25px);
transition:.8s ease;
}

.gtp-content-wrapper .gtp-reveal.gtp-show{
opacity:1;
transform:translateY(0);
}

@media (min-width:320px) and (max-width:374px){
.gtp-content-wrapper .gtp-section{padding:55px 14px;}
.gtp-content-wrapper .gtp-container{padding:0;}
.gtp-content-wrapper .gtp-heading{font-size:26px;}
.gtp-content-wrapper .gtp-intro{font-size:14px;}
.gtp-content-wrapper .gtp-grid{grid-template-columns:1fr;gap:16px;}
.gtp-content-wrapper .gtp-card{padding:22px;}
.gtp-content-wrapper .gtp-card h3{font-size:18px;}
.gtp-content-wrapper .gtp-card p{font-size:14px;}
.gtp-content-wrapper .gtp-step{padding:22px;}
.gtp-content-wrapper .gtp-step-inner{flex-direction:column;}
}

@media (min-width:375px) and (max-width:429px){
.gtp-content-wrapper .gtp-section{padding:60px 18px;}
.gtp-content-wrapper .gtp-heading{font-size:28px;}
.gtp-content-wrapper .gtp-intro{font-size:15px;}
.gtp-content-wrapper .gtp-grid{grid-template-columns:1fr;gap:18px;}
.gtp-content-wrapper .gtp-card{padding:24px;}
.gtp-content-wrapper .gtp-card h3{font-size:19px;}
.gtp-content-wrapper .gtp-card p{font-size:15px;}
.gtp-content-wrapper .gtp-step-inner{flex-direction:column;}
}

@media (min-width:430px) and (max-width:767px){
.gtp-content-wrapper .gtp-section{padding:65px 22px;}
.gtp-content-wrapper .gtp-heading{font-size:31px;}
.gtp-content-wrapper .gtp-intro{font-size:16px;}
.gtp-content-wrapper .gtp-grid{grid-template-columns:1fr;gap:20px;}
.gtp-content-wrapper .gtp-card{padding:26px;}
.gtp-content-wrapper .gtp-card h3{font-size:20px;}
.gtp-content-wrapper .gtp-card p{font-size:15px;}
.gtp-content-wrapper .gtp-step-inner{flex-direction:column;}
}

@media (min-width:768px) and (max-width:1023px){
.gtp-content-wrapper .gtp-section{padding:80px 30px;}
.gtp-content-wrapper .gtp-heading{font-size:38px;}
.gtp-content-wrapper .gtp-intro{font-size:17px;}
.gtp-content-wrapper .gtp-grid.six{grid-template-columns:repeat(2,1fr);gap:22px;}
.gtp-content-wrapper .gtp-grid.three{grid-template-columns:repeat(2,1fr);gap:22px;}
.gtp-content-wrapper .gtp-card{padding:28px;}
.gtp-content-wrapper .gtp-card h3{font-size:21px;}
.gtp-content-wrapper .gtp-card p{font-size:15px;}
}

@media (min-width:1024px){
.gtp-content-wrapper .gtp-section{padding:95px 40px;}
.gtp-content-wrapper .gtp-heading{font-size:42px;}
.gtp-content-wrapper .gtp-intro{font-size:18px;}
.gtp-content-wrapper .gtp-grid.six{grid-template-columns:repeat(3,1fr);gap:24px;}
.gtp-content-wrapper .gtp-grid.three{grid-template-columns:repeat(3,1fr);gap:24px;}
.gtp-content-wrapper .gtp-card{padding:30px;}
.gtp-content-wrapper .gtp-card h3{font-size:22px;}
.gtp-content-wrapper .gtp-card p{font-size:16px;}
}

/* tc-scoped:tc-wp-content-root */

.tc-wp-content-root {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: flow-root;
  isolation: isolate;
  position: relative;
}
.tc-wp-content-root img,
.tc-wp-content-root video,
.tc-wp-content-root svg,
.tc-wp-content-root iframe {
  max-width: 100%;
  height: auto;
}